aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Coleman <ian@iancoleman.io>2018-05-29 11:20:32 +1000
committerIan Coleman <ian@iancoleman.io>2018-05-29 11:30:48 +1000
commit2ab3faf414af6f37918d207f13da4183a548869a (patch)
tree78a6bcc5a541c8b530eed96e026cb5641d541d2c
parent6db7516d4ad83794c9c89634597fc7503fa7de81 (diff)
downloadBIP39-2ab3faf414af6f37918d207f13da4183a548869a.tar.gz
BIP39-2ab3faf414af6f37918d207f13da4183a548869a.tar.zst
BIP39-2ab3faf414af6f37918d207f13da4183a548869a.zip
Fix tests for altcoins
Checked reddcoin address in block explorer https://live.reddcoin.com AXE params were updated in https://github.com/iancoleman/bip39/pull/213 but not the test.
-rw-r--r--tests/spec/tests.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js
index b90906b..b81294b 100644
--- a/tests/spec/tests.js
+++ b/tests/spec/tests.js
@@ -616,7 +616,7 @@ it('Allows selection of monacoin', function(done) {
616it('Allows selection of AXE', function(done) { 616it('Allows selection of AXE', function(done) {
617 var params = { 617 var params = {
618 selectText: "AXE - Axe", 618 selectText: "AXE - Axe",
619 firstAddress: "XQ4HLxUVS3egk5ff1o9e2vJFJKSSsUH3B7", 619 firstAddress: "PScwtLUyPiGrqtKXrHF37DGETLXLZdw4up",
620 }; 620 };
621 testNetwork(done, params); 621 testNetwork(done, params);
622}); 622});
@@ -1057,7 +1057,7 @@ it('Allows selection of Putincoin', function(done) {
1057it('Allows selection of Reddcoin', function(done) { 1057it('Allows selection of Reddcoin', function(done) {
1058 var params = { 1058 var params = {
1059 selectText: "RDD - Reddcoin", 1059 selectText: "RDD - Reddcoin",
1060 firstAddress: "1M4druAcUfkXBaAcQ4cCgCLPHChiaib6kL", 1060 firstAddress: "RtgRvXMBng1y51ftteveFqwNfyRG18HpxQ",
1061 }; 1061 };
1062 testNetwork(done, params); 1062 testNetwork(done, params);
1063}); 1063});