To get around this issue I decided to install bitcore dash directly from GH using npm install -g dashevo/bitcore-dash#v4.1.0
However, I noticed that my /insight endpoint is serving bitcoin testnet instead of dash. Even the block height was the same (1325172). My bitcore-node.json is below:
{
"network": "testnet",
"port": 3001,
"services": [
"bitcoind",
"web",
"insight-api",
"insight-ui"
],
"servicesConfig": {
"bitcoind": {
"spawn": {
"datadir": "/root/.bitcore/data",
"exec": "/usr/local/lib/node_modules/bitcore/node_modules/bitcore-node/bin/bitcoind"
}
},
"insight-api": {
"disableRateLimiter": true,
"rateLimiterOptions": {
"limit": 1000000000000
}
}
}
}
To get around this issue I decided to install bitcore dash directly from GH using
npm install -g dashevo/bitcore-dash#v4.1.0However, I noticed that my /insight endpoint is serving bitcoin testnet instead of dash. Even the block height was the same (1325172). My bitcore-node.json is below: