Use correct BIP44 value for Denarius of 116, not 0

See https://github.com/satoshilabs/slips/blob/master/slip-0044.md
This commit is contained in:
Ian Coleman
2018-03-12 11:41:35 +11:00
parent 139becaf2c
commit 5028988195
2 changed files with 2 additions and 2 deletions

View File

@@ -1600,7 +1600,7 @@
segwitAvailable: false,
onSelect: function() {
network = bitcoinjs.bitcoin.networks.denarius;
setHdCoin(0);
setHdCoin(116);
},
},
{

View File

@@ -426,7 +426,7 @@ it('Allows selection of dogecoin', function(done) {
it('Allows selection of denarius', function(done) {
var params = {
selectText: "DNR - Denarius",
firstAddress: "D9feDKo88SHir79b2Kqhk7JAtaddmxDjNV",
firstAddress: "DFdFMVUMzU9xX88EywXvAGwjiwpxyh9vKb",
};
testNetwork(done, params);
});