Derivation path set correctly when changing coins

Closes #9
This commit is contained in:
Ian Coleman
2015-08-21 08:51:18 +10:00
parent ae30fed803
commit 2b831bc6b5
2 changed files with 2 additions and 2 deletions

View File

@@ -14717,7 +14717,6 @@ var Mnemonic = function(language) {
function bip44Changed() {
setBip44DerivationPath();
derivationPath = DOM.bip44path.val();
derivationChanged();
}
@@ -14945,6 +14944,7 @@ var Mnemonic = function(language) {
path += account + "'/";
path += change;
DOM.bip44path.val(path);
derivationPath = DOM.bip44path.val();
}
function parseIntNoNaN(val, defaultVal) {

View File

@@ -135,7 +135,6 @@
function bip44Changed() {
setBip44DerivationPath();
derivationPath = DOM.bip44path.val();
derivationChanged();
}
@@ -363,6 +362,7 @@
path += account + "'/";
path += change;
DOM.bip44path.val(path);
derivationPath = DOM.bip44path.val();
}
function parseIntNoNaN(val, defaultVal) {