Default protocol and bitcore-lib updates

- Default protocol should be 70001 instead of 70000 since there really
was no protocol in the 70000 series.
This commit is contained in:
Chris Kleeschulte 2017-04-24 17:47:38 -04:00
parent e684688e4d
commit c41681d6c2
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ function builder(options) {
options.BlockHeader = options.BlockHeader || bitcore.BlockHeader;
options.Transaction = options.Transaction || bitcore.Transaction;
options.MerkleBlock = options.MerkleBlock || bitcore.MerkleBlock;
options.protocolVersion = options.protocolVersion || 70000;
options.protocolVersion = options.protocolVersion || 70001;
var exported = {
constructors: {

View File

@ -52,7 +52,7 @@
"url": "https://github.com/bitpay/bitcore-p2p.git"
},
"dependencies": {
"bitcore-lib": "^0.13.7",
"bitcore-lib": "^0.14",
"bloom-filter": "^0.2.0",
"buffers": "bitpay/node-buffers#v0.1.2-bitpay",
"socks5-client": "^0.3.6"