test: fix Wallet test pertaining to null/0 fees.

This commit is contained in:
Christopher Jeffrey 2014-09-08 18:47:42 -07:00
commit 125b8a807b

View file

@ -108,8 +108,8 @@ inherits(Wallet, events.EventEmitter);
Wallet.builderOpts = { Wallet.builderOpts = {
lockTime: null, lockTime: null,
signhash: bitcore.Transaction.SIGNHASH_ALL, signhash: bitcore.Transaction.SIGNHASH_ALL,
fee: null, fee: undefined,
feeSat: null, feeSat: undefined,
}; };
/** /**