Use ethutil.bufferToHex

This commit is contained in:
Alex Beregszaszi 2016-03-22 23:56:01 +00:00
parent 603419ad64
commit 60c9ebaaf7
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ Wallet.prototype.getPrivateKey = function () {
} }
Wallet.prototype.getPrivateKeyString = function () { Wallet.prototype.getPrivateKeyString = function () {
return '0x' + this.getPrivateKey().toString('hex') return ethUtil.bufferToHex(this.getPrivateKey())
} }
Wallet.prototype.getPublicKey = function () { Wallet.prototype.getPublicKey = function () {
@ -43,7 +43,7 @@ Wallet.prototype.getPublicKey = function () {
} }
Wallet.prototype.getPublicKeyString = function () { Wallet.prototype.getPublicKeyString = function () {
return '0x' + this.getPublicKey().toString('hex') return ethUtil.bufferToHex(this.getPublicKey())
} }
Wallet.prototype.getAddress = function () { Wallet.prototype.getAddress = function () {
@ -51,7 +51,7 @@ Wallet.prototype.getAddress = function () {
} }
Wallet.prototype.getAddressString = function () { Wallet.prototype.getAddressString = function () {
return '0x' + this.getAddress().toString('hex') return ethUtil.bufferToHex(this.getAddress())
} }
Wallet.prototype.getChecksumAddressString = function () { Wallet.prototype.getChecksumAddressString = function () {

View File

@ -25,7 +25,7 @@
"homepage": "https://github.com/axic/ethereumjs-wallet", "homepage": "https://github.com/axic/ethereumjs-wallet",
"dependencies": { "dependencies": {
"aes-js": "^0.2.3", "aes-js": "^0.2.3",
"ethereumjs-util": "^4.1.0", "ethereumjs-util": "^4.2.0",
"scrypt.js": "^0.1.0", "scrypt.js": "^0.1.0",
"uuid": "^2.0.1", "uuid": "^2.0.1",
"utf8": "^2.1.1" "utf8": "^2.1.1"