Browse Source

tests: Wallet test was not comprehensive

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
c3f8869386
  1. 8
      test/wallet.js

8
test/wallet.js

@ -633,9 +633,11 @@ describe('Wallet', function() {
}) })
it('skips change if it is not above dust threshold', function() { it('skips change if it is not above dust threshold', function() {
var fee = 14570 var tx1 = wallet.createTx(to, value - 546)
var tx = wallet.createTx(to, value) assert.equal(tx1.outs.length, 1)
assert.equal(tx.outs.length, 1)
var tx2 = wallet.createTx(to, value - 547)
assert.equal(tx2.outs.length, 2)
}) })
}) })
}) })

Loading…
Cancel
Save