
I successfully setup a private blockchain in my laptop and mined around 5160 Ether (no market value). Also deployed a smart contract.
Now I had to close my laptop and when I came back and turned the system on, with all the steps, my wallet on my private block chain is showing 5160 Ethers, but I am not able to mine further and the hash rate is 0.0 KH/s even after miner.start(1); command in geth for around 20 minutes. Where am I going wrong and how to resume mining on my private blockchain? In the first attempt the hash rate was quite decent.
debug.verbosity(4);miner.start(1);admin.sleepBlocks(3);miner.stop();debug.verbosity(3);to help understand what is the matter. Also - do you have just one node running or more than one? – Alan Buxton Aug 26 '17 at 19:05--datadir dirnameparam when starting your geth node this time round? If you are using different directory name (or none at all) then you could be accidentally using a directory that uses a differentgenesis.json. Thegenesis.jsonis only used when initialising the node - it's not relevant at startup time. – Alan Buxton Aug 27 '17 at 13:45