Dogecoin uses official BIP44 coin type

http://doc.satoshilabs.com/slips/slip-0044.html
This commit is contained in:
Ian Coleman
2014-10-15 09:51:50 +11:00
parent ea483b4a2e
commit 1494d6f3ac
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -33938,8 +33938,7 @@ var Mnemonic = function(language) {
} }
else if (n == "dogecoin") { else if (n == "dogecoin") {
network = Bitcoin.networks.dogecoin; network = Bitcoin.networks.dogecoin;
var UNOFFICIAL_BIP44_COIN = 9999; DOM.bip44coin.val(3);
DOM.bip44coin.val(UNOFFICIAL_BIP44_COIN); // This coin is not in BIP44
} }
setBip44DerivationPath(); setBip44DerivationPath();
delayedPhraseChanged(); delayedPhraseChanged();
+1 -2
View File
@@ -85,8 +85,7 @@
} }
else if (n == "dogecoin") { else if (n == "dogecoin") {
network = Bitcoin.networks.dogecoin; network = Bitcoin.networks.dogecoin;
var UNOFFICIAL_BIP44_COIN = 9999; DOM.bip44coin.val(3);
DOM.bip44coin.val(UNOFFICIAL_BIP44_COIN); // This coin is not in BIP44
} }
setBip44DerivationPath(); setBip44DerivationPath();
delayedPhraseChanged(); delayedPhraseChanged();