Problem:Duplicate “Time” in the rawtransaction rpc
Solution: Delete the line of file: src/rpcrawtransaction.cpp
entry.push_back(Pair("time", (int64_t)pindex->nTime));
Re-compile
the daemon wallet and remove previous synchronized data.
Another issue you’ll meet while running: node scripts/sync.js index update
Cannot read property 0 of undefined’ during initial sync/update.
And this is the workaround solution for your iquidus explorer.
I’ve had this issue and fixed it by changing the following line in explorer.js:if (vout[i].scriptPubKey.type != 'nonstandard' && vout[i].scriptPubKey.type != 'nulldata') {
toif (vout[i].scriptPubKey.type != 'nonstandard' && vout[i].scriptPubKey.type != 'nulldata' && vout[i].scriptPubKey.hasOwnProperty("addresses")) {