fix: miner wait untill UpToDate

This commit is contained in:
Ethan Buchman 2014-07-01 04:25:42 -04:00
parent 328ee9a3ec
commit 0ed9528d76
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}