diff options
author | Maran <maran.hidskes@gmail.com> | 2014-06-23 22:26:01 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-06-23 22:26:01 +0800 |
commit | bcb88e73528777ac0de489449a8d9045654447d5 (patch) | |
tree | 0731b19e6d8043b84525e2c586dbf0cb39d38600 /utils | |
parent | f6aabb7a90903a681eca44976301620756124137 (diff) | |
parent | 176b7802510a667b8973f2be232f7a8213b3474b (diff) | |
download | dexon-bcb88e73528777ac0de489449a8d9045654447d5.tar dexon-bcb88e73528777ac0de489449a8d9045654447d5.tar.gz dexon-bcb88e73528777ac0de489449a8d9045654447d5.tar.bz2 dexon-bcb88e73528777ac0de489449a8d9045654447d5.tar.lz dexon-bcb88e73528777ac0de489449a8d9045654447d5.tar.xz dexon-bcb88e73528777ac0de489449a8d9045654447d5.tar.zst dexon-bcb88e73528777ac0de489449a8d9045654447d5.zip |
Merge branch 'develop' of github.com:ethereum/go-ethereum into develop
Diffstat (limited to 'utils')
-rw-r--r-- | utils/cmd.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/utils/cmd.go b/utils/cmd.go index e1fc0fc00..e66bb2612 100644 --- a/utils/cmd.go +++ b/utils/cmd.go @@ -38,9 +38,11 @@ func DoMining(ethereum *eth.Ethereum) { // Give it some time to connect with peers time.Sleep(3 * time.Second) - for ethereum.IsUpToDate() == false { - time.Sleep(5 * time.Second) - } + /* + for ethereum.IsUpToDate() == false { + time.Sleep(5 * time.Second) + } + */ ethutil.Config.Log.Infoln("Miner started") |