From 125b8a807b3af00d9ef7f78f0c50cccc6480e21f Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 8 Sep 2014 18:47:42 -0700 Subject: [PATCH] test: fix Wallet test pertaining to null/0 fees. --- js/models/core/Wallet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index ce3a64347..c3163aea7 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -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, }; /**