Bitcoind works now and I tried but debug.log is not getting updated.
Just FYI.. here is the code I am using (only showing relevant lines)
I am wondering if birtcore-lib is really doing the transaction and connecting to some node. Or it is Insight which is doing the transaction over the wire. Insight connects to server
https://test-insight.bitpay.com -In that case I need to create my own insight server.
Code:
var Insight = require('bitcore-explorers').Insight;
var bitcore = require('bitcore-lib');
var insight = new Insight("testnet");
insight.getUnspentUtxos(<fromaddress>, function (error, utxos) {
let bitcore_transaction = new bitcore.Transaction()
.from(utxos)
.to(transaction.toaddress, transactionAmount)
.change(transaction.fromaddress)
.sign(new bitcore.PrivateKey(transactio[Suspicious link removed]ivatekey));
insight.broadcast(bitcore_transaction, <error handler function>);
}