aboutsummaryrefslogtreecommitdiff
path: root/bip39-standalone.html
diff options
context:
space:
mode:
authorIan Coleman <coleman.ian@gmail.com>2015-08-21 08:51:18 +1000
committerIan Coleman <coleman.ian@gmail.com>2015-08-21 08:54:06 +1000
commit2b831bc6b577f88485bb89cfcf7f94fb3f39c1d2 (patch)
tree07d11206d7c8f26bdc45ad97fb3a460ad03ffb13 /bip39-standalone.html
parentae30fed8037fa9d1e88e9431c4f301f1d1c53d29 (diff)
downloadBIP39-2b831bc6b577f88485bb89cfcf7f94fb3f39c1d2.tar.gz
BIP39-2b831bc6b577f88485bb89cfcf7f94fb3f39c1d2.tar.zst
BIP39-2b831bc6b577f88485bb89cfcf7f94fb3f39c1d2.zip
Derivation path set correctly when changing coins
Closes #9
Diffstat (limited to 'bip39-standalone.html')
-rw-r--r--bip39-standalone.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html
index 9ab9552..9a40252 100644
--- a/bip39-standalone.html
+++ b/bip39-standalone.html
@@ -14717,7 +14717,6 @@ var Mnemonic = function(language) {
14717 14717
14718 function bip44Changed() { 14718 function bip44Changed() {
14719 setBip44DerivationPath(); 14719 setBip44DerivationPath();
14720 derivationPath = DOM.bip44path.val();
14721 derivationChanged(); 14720 derivationChanged();
14722 } 14721 }
14723 14722
@@ -14945,6 +14944,7 @@ var Mnemonic = function(language) {
14945 path += account + "'/"; 14944 path += account + "'/";
14946 path += change; 14945 path += change;
14947 DOM.bip44path.val(path); 14946 DOM.bip44path.val(path);
14947 derivationPath = DOM.bip44path.val();
14948 } 14948 }
14949 14949
14950 function parseIntNoNaN(val, defaultVal) { 14950 function parseIntNoNaN(val, defaultVal) {