From: Ian Coleman Date: Wed, 2 Aug 2017 06:12:41 +0000 (+1000) Subject: Change BIP44 purpose and coin fields to readonly X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git;a=commitdiff_plain;h=684624b522025062e0426b0c2dd77281d4108f6f Change BIP44 purpose and coin fields to readonly --- diff --git a/src/index.html b/src/index.html index 8edb0ae..6a5e644 100644 --- a/src/index.html +++ b/src/index.html @@ -299,7 +299,7 @@ Purpose
- +
@@ -307,7 +307,7 @@ Coin
- +
diff --git a/src/js/index.js b/src/js/index.js index 9b8432a..84c773f 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -88,8 +88,6 @@ DOM.more.on("click", showMore); DOM.rootKey.on("input", delayedRootKeyChanged); DOM.bip32path.on("input", calcForDerivationPath); - DOM.bip44purpose.on("input", calcForDerivationPath); - DOM.bip44coin.on("input", calcForDerivationPath); DOM.bip44account.on("input", calcForDerivationPath); DOM.bip44change.on("input", calcForDerivationPath); DOM.tab.on("shown.bs.tab", calcForDerivationPath); diff --git a/tests.js b/tests.js index 4f922ce..ea29043 100644 --- a/tests.js +++ b/tests.js @@ -1028,70 +1028,6 @@ page.open(url, function(status) { }); }, -// BIP44 purpose field changes address list -function() { -page.open(url, function(status) { - // set the phrase - var expected = "1JbDzRJ2cDT8aat2xwKd6Pb2zzavow5MhF"; - page.evaluate(function() { - $(".phrase").val("abandon abandon ability"); - $(".phrase").trigger("input"); - }); - waitForGenerate(function() { - // change the bip44 purpose field to 45 - page.evaluate(function() { - $("#bip44 .purpose").val("45"); - $("#bip44 .purpose").trigger("input"); - }); - waitForGenerate(function() { - // check the address for the new derivation path - var actual = page.evaluate(function() { - return $(".address:first").text(); - }); - if (actual != expected) { - console.log("BIP44 purpose field generates incorrect address"); - console.log("Expected: " + expected); - console.log("Actual: " + actual); - fail(); - } - next(); - }); - }); -}); -}, - -// BIP44 coin field changes address list -function() { -page.open(url, function(status) { - // set the phrase - var expected = "1F6dB2djQYrxoyfZZmfr6D5voH8GkJTghk"; - page.evaluate(function() { - $(".phrase").val("abandon abandon ability"); - $(".phrase").trigger("input"); - }); - waitForGenerate(function() { - // change the bip44 purpose field to 45 - page.evaluate(function() { - $("#bip44 .coin").val("1"); - $("#bip44 .coin").trigger("input"); - }); - waitForGenerate(function() { - // check the address for the new derivation path - var actual = page.evaluate(function() { - return $(".address:first").text(); - }); - if (actual != expected) { - console.log("BIP44 coin field generates incorrect address"); - console.log("Expected: " + expected); - console.log("Actual: " + actual); - fail(); - } - next(); - }); - }); -}); -}, - // BIP44 account field changes address list function() { page.open(url, function(status) { @@ -3392,7 +3328,7 @@ page.open(url, function(status) { // check the BIP44 account extended private key waitForGenerate(function() { var actual = page.evaluate(function() { - return $(".account-xprv").val(); + return $("#bip44 .account-xprv").val(); }); if (actual != expected) { console.log("BIP44 account extended private key is incorrect"); @@ -3418,7 +3354,7 @@ page.open(url, function(status) { // check the BIP44 account extended public key waitForGenerate(function() { var actual = page.evaluate(function() { - return $(".account-xpub").val(); + return $("#bip44 .account-xpub").val(); }); if (actual != expected) { console.log("BIP44 account extended public key is incorrect");