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

@ -96,7 +96,7 @@ ECKey.prototype.toBase64 = function() {
return convert.bytesToBase64(this.toBytes()) return convert.bytesToBase64(this.toBytes())
} }
ECKey.prototype.toString = ECKey.prototype.toWif ECKey.prototype.toString = ECKey.prototype.toHex
ECKey.prototype.getAddress = function(version) { ECKey.prototype.getAddress = function(version) {
return this.getPub().getAddress(version) return this.getPub().getAddress(version)
@ -170,7 +170,7 @@ ECPubKey.prototype.toWif = function(version) {
return base58.checkEncode(this.toBytes(), version) return base58.checkEncode(this.toBytes(), version)
} }
ECPubKey.prototype.toString = ECPubKey.prototype.toWif ECPubKey.prototype.toString = ECPubKey.prototype.toHex
ECPubKey.prototype.getAddress = function(version) { ECPubKey.prototype.getAddress = function(version) {
var version = version || Network.mainnet.addressVersion; var version = version || Network.mainnet.addressVersion;

View file

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