Hi.
I want to recover the Multichain to an earlier state since we somehow lost a node (and therefore a miner private key) and cannot continue from here.
I managed to use the following commands to set the blockchain to an earlier state:
- pause
- setblock (140)
- clearmempool
- resume
- pause
- setblock (hash of the new fork)
- clearmempool
- resume
Unfortunately the node is not able to mine on the new branch and I also cannot create any transactions (e.g. create stream), since the following message is returned:
"Safe mode: Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade."
There is indeed another node in the network ( I will also need to realign this node at a later point in time), but for now the primary node should not care about this other node because it is not listed in the "listpermissions" (only our own node address is returned here) and also "getpeerinfo" returns empty.
Nevertheless I am not able to create any transaction because of the mentioned message above.
When I do a getchaintips, it shows that I am actually in the correct fork
{
"height": 140,
"hash": "0089f1d9af5715a3e0f108c6ec0bed31ac5cbdc2db7bbc650a0e5951a7e117b9",
"branchlen": 0,
"status": "active"
}
But nothing is going forward here
getinfo:
"version": "2.0.7",
"nodeversion": 20007901,
"edition": "Community",
"protocolversion": 20011,
Some hints?