aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bip39-standalone.html3
-rw-r--r--src/js/index.js3
2 files changed, 2 insertions, 4 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html
index c015856..77e86a5 100644
--- a/bip39-standalone.html
+++ b/bip39-standalone.html
@@ -33938,8 +33938,7 @@ var Mnemonic = function(language) {
33938 } 33938 }
33939 else if (n == "dogecoin") { 33939 else if (n == "dogecoin") {
33940 network = Bitcoin.networks.dogecoin; 33940 network = Bitcoin.networks.dogecoin;
33941 var UNOFFICIAL_BIP44_COIN = 9999; 33941 DOM.bip44coin.val(3);
33942 DOM.bip44coin.val(UNOFFICIAL_BIP44_COIN); // This coin is not in BIP44
33943 } 33942 }
33944 setBip44DerivationPath(); 33943 setBip44DerivationPath();
33945 delayedPhraseChanged(); 33944 delayedPhraseChanged();
diff --git a/src/js/index.js b/src/js/index.js
index bbef50d..20fa000 100644
--- a/src/js/index.js
+++ b/src/js/index.js
@@ -85,8 +85,7 @@
85 } 85 }
86 else if (n == "dogecoin") { 86 else if (n == "dogecoin") {
87 network = Bitcoin.networks.dogecoin; 87 network = Bitcoin.networks.dogecoin;
88 var UNOFFICIAL_BIP44_COIN = 9999; 88 DOM.bip44coin.val(3);
89 DOM.bip44coin.val(UNOFFICIAL_BIP44_COIN); // This coin is not in BIP44
90 } 89 }
91 setBip44DerivationPath(); 90 setBip44DerivationPath();
92 delayedPhraseChanged(); 91 delayedPhraseChanged();