Browse Source

HDWallet: clarify test intention

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
749943cb4e
  1. 6
      test/hdwallet.js

6
test/hdwallet.js

@ -81,12 +81,12 @@ describe('HDWallet', function() {
}) })
it('fails for an invalid network type', function() { it('fails for an invalid network type', function() {
var buffer = new HDWallet(seed).toBuffer() var network = { bip32: { priv: 0x11111111, pub: 0x22222222 } }
buffer.writeUInt32BE(0x00000000, 0) var buffer = new HDWallet(seed, network).toBuffer()
assert.throws(function() { assert.throws(function() {
HDWallet.fromBuffer(buffer) HDWallet.fromBuffer(buffer)
}, /Could not find version 0/) }, /Could not find version 22222222/)
}) })
}) })
}) })

Loading…
Cancel
Save