tx proposal test working with new bitcore Builder

This commit is contained in:
Matias Alejo Garcia 2014-04-13 11:00:58 -03:00
commit c59ed66e49
3 changed files with 68 additions and 142 deletions

View file

@ -13,7 +13,6 @@ function PrivateKey(opts) {
this.network = opts.networkName === 'testnet' ?
networks.testnet : networks.livenet;
var init = opts.extendedPrivateKeyString || this.network.name;
console.log('[PrivateKey.js.15:init:]',init); //TODO
this.BIP32 = opts.BIP32 || new BIP32(init);
this._calcId();
};