aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bip39-standalone.html2
-rw-r--r--src/js/index.js2
2 files changed, 2 insertions, 2 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) {
diff --git a/src/js/index.js b/src/js/index.js
index 2f7815d..676684b 100644
--- a/src/js/index.js
+++ b/src/js/index.js
@@ -135,7 +135,6 @@
135 135
136 function bip44Changed() { 136 function bip44Changed() {
137 setBip44DerivationPath(); 137 setBip44DerivationPath();
138 derivationPath = DOM.bip44path.val();
139 derivationChanged(); 138 derivationChanged();
140 } 139 }
141 140
@@ -363,6 +362,7 @@
363 path += account + "'/"; 362 path += account + "'/";
364 path += change; 363 path += change;
365 DOM.bip44path.val(path); 364 DOM.bip44path.val(path);
365 derivationPath = DOM.bip44path.val();
366 } 366 }
367 367
368 function parseIntNoNaN(val, defaultVal) { 368 function parseIntNoNaN(val, defaultVal) {