From 9bdc169712471eb5e4421e09fc13b6f0e5bbdadd Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 29 Mar 2016 12:50:47 -0700 Subject: Fix signing bug --- app/scripts/lib/idStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/scripts') diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index af76cb7bc..ea873e627 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -285,7 +285,7 @@ function IdManagement(opts) { this.keyStore = opts.keyStore this.derivedKey = opts.derivedKey - this.hdPathString = opts.hdPathString + this.hdPathString = "m/44'/60'/0'/0" this.getAddresses = function(){ return keyStore.getAddresses(this.hdPathString).map(function(address){ return '0x'+address }) @@ -301,7 +301,7 @@ function IdManagement(opts) { txParams.nonce = ethUtil.addHexPrefix(txParams.nonce) var tx = new Transaction(txParams) var rawTx = '0x'+tx.serialize().toString('hex') - return '0x'+LightwalletSigner.signTx(this.keyStore, this.derivedKey, rawTx, txParams.from) + return '0x'+LightwalletSigner.signTx(this.keyStore, this.derivedKey, rawTx, txParams.from, this.hdPathString) } this.getSeed = function(){ -- cgit