Update bitcore network parameters

Closes #231
This commit is contained in:
Ian Coleman
2018-07-26 09:53:49 +10:00
parent 0afecfc73c
commit b7de1f3d89
2 changed files with 3 additions and 3 deletions

View File

@@ -446,8 +446,8 @@ bitcoinjs.bitcoin.networks.bitcore = {
public: 0x0488B21E, public: 0x0488B21E,
private: 0x0488ADE4, private: 0x0488ADE4,
}, },
pubKeyHash: 0x00, pubKeyHash: 0x03,
scriptHash: 0x05, scriptHash: 0x7D,
wif: 0x80, wif: 0x80,
}; };

View File

@@ -707,7 +707,7 @@ it('Allows selection of Bitcoinz', function(done) {
it('Allows selection of Bitcore', function(done) { it('Allows selection of Bitcore', function(done) {
var params = { var params = {
selectText: "BTX - Bitcore", selectText: "BTX - Bitcore",
firstAddress: "1Dg18EtqhReS11e9h8khkLjWGLHVjPM2AB", firstAddress: "2Rgp5Znhpy34TK4QmPkfCiYs9r4KovfTH9",
}; };
testNetwork(done, params); testNetwork(done, params);
}); });