Changes default EC*Key.toString behaviour to Hex

This commit is contained in:
Daniel Cousens 2014-03-23 05:42:04 +11:00
parent ea7821b6fa
commit e9fdfecfea
2 changed files with 5 additions and 5 deletions

View file

@ -46,7 +46,7 @@ describe('HDWallet', function() {
it('creates from binary seed', function() {
var hd = new HDWallet(seed)
assert.equal(hd.priv, expectedPrivKey)
assert.equal(hd.priv.toWif(), expectedPrivKey)
assert(hd.pub)
})
@ -54,7 +54,7 @@ describe('HDWallet', function() {
it('creates from hex seed', function() {
var hd = HDWallet.fromSeedHex(b2h(seed))
assert.equal(hd.priv, expectedPrivKey)
assert.equal(hd.priv.toWif(), expectedPrivKey)
assert(hd.pub)
})
})
@ -63,7 +63,7 @@ describe('HDWallet', function() {
it('creates from string seed', function() {
var hd = HDWallet.fromSeedString(convert.bytesToString(seed))
assert.equal(hd.priv, expectedPrivKey)
assert.equal(hd.priv.toWif(), expectedPrivKey)
assert(hd.pub)
})
})