diff options
author | Pawel Cioch <pawel@greenhex.net> | 2019-09-10 22:11:28 -0500 |
---|---|---|
committer | Pawel Cioch <pawel@greenhex.net> | 2019-09-10 22:11:28 -0500 |
commit | 318ec4dc9f37c2ea4fc8de2fd487602c3cd05cb9 (patch) | |
tree | 98f1cc7405aca4b91b9e5f290b7356d13e0960ef /tests | |
parent | e440d504fbc80fe11366e24dccf945c43aaf52df (diff) | |
download | BIP39-318ec4dc9f37c2ea4fc8de2fd487602c3cd05cb9.tar.gz BIP39-318ec4dc9f37c2ea4fc8de2fd487602c3cd05cb9.tar.zst BIP39-318ec4dc9f37c2ea4fc8de2fd487602c3cd05cb9.zip |
Added HUSH3 encoding and kept old as Legacy for users to be able to cross verify
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/tests.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 6f9fd4f..c9c0e6e 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -1441,11 +1441,18 @@ it('Allows selection of Callisto', function(done) { | |||
1441 | }); | 1441 | }); |
1442 | it('Allows selection of HUSH', function(done) { | 1442 | it('Allows selection of HUSH', function(done) { |
1443 | var params = { | 1443 | var params = { |
1444 | selectText: "HUSH - Hush", | 1444 | selectText: "HUSH - Hush (Legacy)", |
1445 | firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA", | 1445 | firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA", |
1446 | }; | 1446 | }; |
1447 | testNetwork(done, params); | 1447 | testNetwork(done, params); |
1448 | }); | 1448 | }); |
1449 | it('Allows selection of HUSH3', function(done) { | ||
1450 | var params = { | ||
1451 | selectText: "HUSH - Hush3", | ||
1452 | firstAddress: "RXWSQhwvw5jHPGP8bjwJhWoRnMLBnuPDKD", | ||
1453 | }; | ||
1454 | testNetwork(done, params); | ||
1455 | }); | ||
1449 | it('Allows selection of ExchangeCoin', function(done) { | 1456 | it('Allows selection of ExchangeCoin', function(done) { |
1450 | var params = { | 1457 | var params = { |
1451 | selectText: "EXCC - ExchangeCoin", | 1458 | selectText: "EXCC - ExchangeCoin", |