-
Notifications
You must be signed in to change notification settings - Fork 76
Description
I followed this installation guide https://docs.dash.org/en/stable/developers/insight.html
but I can't get the service to start:
dashcore-node start
/usr/local/lib/node_modules/@dashevo/dashcore-node/lib/scaffold/start.js:124
throw new Error(
^
Error: Could not load service "@dashevo/insight-ui" as it does not support necessary methods and properties.
at checkService (/usr/local/lib/node_modules/@dashevo/dashcore-node/lib/scaffold/start.js:124:11)
at Function.setupServices (/usr/local/lib/node_modules/@dashevo/dashcore-node/lib/scaffold/start.js:182:7)
at start (/usr/local/lib/node_modules/@dashevo/dashcore-node/lib/scaffold/start.js:85:31)
at Command. (/usr/local/lib/node_modules/@dashevo/dashcore-node/lib/cli/main.js:70:7)
at Command.listener (/usr/local/lib/node_modules/@dashevo/dashcore-node/node_modules/commander/index.js:315:8)
at emitTwo (events.js:126:13)
at Command.emit (events.js:214:7)
at Command.parseArgs (/usr/local/lib/node_modules/@dashevo/dashcore-node/node_modules/commander/index.js:651:12)
at Command.parse (/usr/local/lib/node_modules/@dashevo/dashcore-node/node_modules/commander/index.js:474:21)
at Object.main (/usr/local/lib/node_modules/@dashevo/dashcore-node/lib/cli/main.js:147:11)
Here's my dashcore-node.json config paths are ok, I double checked this.
{
"network": "livenet",
"port": 3001,
"services": [
"@dashevo/insight-api",
"@dashevo/insight-ui",
"dashd",
"web"
],
"servicesConfig": {
"dashd": {
"spawn": {
"datadir": "../.dashcore",
"exec": "../dashcore-0.13.2/bin/dashd"
}
}
}
}