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 = {
lockTime: null,
signhash: bitcore.Transaction.SIGNHASH_ALL,
fee: null,
feeSat: null,
fee: undefined,
feeSat: undefined,
};
/**