Connect already running bitcoind with bitcore for bitcoin explorer
Connect already running bitcoind with bitcore for bitcoin explorer I am creating a bitcoin explorer using bitcoind. I using bitcore and insight API for this purpose. I am already running bitcoind in my local system . I want to connect this running bitcoind with bitcore and use insight-api and UI. this my bitcore-node.json file: { "network": "testnet", "port": 3001, "services": [ "bitcoind", "insight-api", "insight-ui", "web" ], "servicesConfig": { "bitcoind": { "spawn": { "datadir": "./", "exec": "/home/ajit/.nvm/versions/node/v4.8.6/lib/node_modules/bitcore/node_modules/bitcore-node/bin/bitcoind" } } } } I have copy-pasted node_module and bitcore-node.json in .bitcoin folder where bitcoin blocks are already downloaded and up to date. this is my bitcoin.conf server=1...