This is a similar to question to this one
I have just setup 2 private nodes on AWS EC2 via geth, which are connected to each other, and have 1 "Hello World" smart contract already mined.
Unfortunately, I had to reset my network and when it went back up online, Node 1 had reset to block 0, while Node 2 was in the latest block (block 2).
I understand that this happened because I shut down incorrectly and that up to 128 blocks can be lost, but is there any way to sync back the 2 nodes again?
I have also ran web3.eth.getBlock() in the geth console of both nodes, and I can see that both Node 1 and 2 have data for all blocks (0, 1, 2).
So I think there must be a way to sync Node 1 back up again?
Many thanks in advance.