good morning!!!!

Skip to content
Snippets Groups Projects
Commit 4fc60f34 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Wait for catchup when starting the miner

parent 2d274003
No related branches found
No related tags found
No related merge requests found
......@@ -204,6 +204,10 @@ func StartMining(ethereum *eth.Ethereum) bool {
miner = ethminer.NewDefaultMiner(addr, ethereum)
// Give it some time to connect with peers
time.Sleep(3 * time.Second)
for !ethereum.IsUpToDate() == false {
time.Sleep(5 * time.Second)
}
logger.Infoln("Miner started")
miner := ethminer.NewDefaultMiner(addr, ethereum)
miner.Start()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment