fix: miner wait untill UpToDate

pull/94/head
Ethan Buchman 11 years ago
parent 328ee9a3ec
commit 0ed9528d76
  1. 2
      utils/cmd.go

@ -204,7 +204,7 @@ 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 {
for !ethereum.IsUpToDate() {
time.Sleep(5 * time.Second)
}

Loading…
Cancel
Save