瀏覽代碼

Merge branch 'develop' of github.com:ethereum/go-ethereum into feature/keys

zelig 11 年之前
父節點
當前提交
ce4080faa7
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      install.sh

+ 4 - 0
install.sh

@@ -208,6 +208,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()