diff options
author | Maran <maran.hidskes@gmail.com> | 2014-05-14 19:57:04 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-05-14 19:57:04 +0800 |
commit | 3ac74b1e7840720e8ae426c751328ed7595188a8 (patch) | |
tree | 8c64b6a9522cd98487ad1ad5c8d3d31c43c159ad /peer.go | |
parent | 0512113bdd5cc55ae35abd442b668ab5ed7a116b (diff) | |
download | dexon-3ac74b1e7840720e8ae426c751328ed7595188a8.tar.gz dexon-3ac74b1e7840720e8ae426c751328ed7595188a8.tar.zst dexon-3ac74b1e7840720e8ae426c751328ed7595188a8.zip |
Implemented IsUpToDate to mark the node as ready to start mining
Diffstat (limited to 'peer.go')
-rw-r--r-- | peer.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -389,6 +389,8 @@ func (p *Peer) HandleInbound() { p.CatchupWithPeer(p.ethereum.BlockChain().CurrentBlock.Hash()) } } + + p.catchingUp = false case ethwire.MsgTxTy: // If the message was a transaction queue the transaction // in the TxPool where it will undergo validation and |