diff options
author | Ian Coleman <ian@iancoleman.io> | 2018-03-12 11:41:35 +1100 |
---|---|---|
committer | Ian Coleman <ian@iancoleman.io> | 2018-03-12 11:41:35 +1100 |
commit | 502898819506605c2b58821285c20054b999a8a7 (patch) | |
tree | d7d9b581082b32cec402e74bc7777d67a4426741 /src | |
parent | 139becaf2cc22c99e2813098c1411164c9baef26 (diff) | |
download | BIP39-502898819506605c2b58821285c20054b999a8a7.tar.gz BIP39-502898819506605c2b58821285c20054b999a8a7.tar.zst BIP39-502898819506605c2b58821285c20054b999a8a7.zip |
Use correct BIP44 value for Denarius of 116, not 0
See https://github.com/satoshilabs/slips/blob/master/slip-0044.md
Diffstat (limited to 'src')
-rw-r--r-- | src/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/index.js b/src/js/index.js index 36af578..3f1cf3c 100644 --- a/src/js/index.js +++ b/src/js/index.js | |||
@@ -1600,7 +1600,7 @@ | |||
1600 | segwitAvailable: false, | 1600 | segwitAvailable: false, |
1601 | onSelect: function() { | 1601 | onSelect: function() { |
1602 | network = bitcoinjs.bitcoin.networks.denarius; | 1602 | network = bitcoinjs.bitcoin.networks.denarius; |
1603 | setHdCoin(0); | 1603 | setHdCoin(116); |
1604 | }, | 1604 | }, |
1605 | }, | 1605 | }, |
1606 | { | 1606 | { |