我正在尝试使用bitcore创建一个私人比特币网络。但bitcore同步数据与比特币livenet或testnet。我找不到任何可以让我从头开始创建网络的bitcore文档。
我按照下面链接
的说明进行操作https://bitcore.io/guides/full-node
{
"network": "livenet" or "testnet" || what do i have to put for private network?
"port": 3001,
"https": true
}
答案 0 :(得分:0)
我认为您需要在节点目录中创建的bitcore-node.json
中添加自定义信息
{
"network": "livenet", // your coins network name
"port": 3001, // your coins port
"services": [
"bitcoind", // required services
"web"
],
"servicesConfig": {
"bitcoind": {
"datadir": "/home/user/.bitcoin", //your coins directory
"exec": "/home/user/bitcoin/src/bitcoind" //your coins executable
}
}
}
正在更改
"network": "livenet"
无论您叫什么,都应该做。现在,您应该可以在其他网络上运行自定义节点了。