Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #108 from alecalve/callback-not-called
Browse files Browse the repository at this point in the history
Fixed a callback not being called during HD wallet restoration
  • Loading branch information
Pernas committed Feb 9, 2016
2 parents 4680bb5 + 943a423 commit 92df68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blockchain-wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ function isAccountNonUsed (account, progress) {

Wallet.prototype.restoreHDWallet = function(mnemonic, bip39Password, pw, startedRestoreHDWallet, progress){
// wallet restoration
startedRestoreHDWallet && startedRestoreHDWallet;
startedRestoreHDWallet && startedRestoreHDWallet();
var self = this;
var seedHex = BIP39.mnemonicToEntropy(mnemonic);
var pass39 = Helpers.isString(bip39Password) ? bip39Password : "";
Expand Down

0 comments on commit 92df68a

Please sign in to comment.