mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-16 04:56:36 +00:00
Merge branch 'develop' of github.com:ethereum/go-ethereum into feature/keys
This commit is contained in:
commit
ce4080faa7
2 changed files with 4 additions and 0 deletions
0
install.sh
Normal file → Executable file
0
install.sh
Normal file → Executable file
|
|
@ -208,6 +208,10 @@ func StartMining(ethereum *eth.Ethereum) bool {
|
||||||
miner = ethminer.NewDefaultMiner(addr, ethereum)
|
miner = ethminer.NewDefaultMiner(addr, ethereum)
|
||||||
// Give it some time to connect with peers
|
// Give it some time to connect with peers
|
||||||
time.Sleep(3 * time.Second)
|
time.Sleep(3 * time.Second)
|
||||||
|
for !ethereum.IsUpToDate() == false {
|
||||||
|
time.Sleep(5 * time.Second)
|
||||||
|
}
|
||||||
|
|
||||||
logger.Infoln("Miner started")
|
logger.Infoln("Miner started")
|
||||||
miner := ethminer.NewDefaultMiner(addr, ethereum)
|
miner := ethminer.NewDefaultMiner(addr, ethereum)
|
||||||
miner.Start()
|
miner.Start()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue