Browse Source

Merge remote-tracking branch 'origin/wb/epoch-block-idea-2' into wb/epoch-block-idea-2

pull/7994/head
William Banfield 3 years ago
parent
commit
81d8f84322
No known key found for this signature in database GPG Key ID: EFAD3442BF29E3AC
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      consensus/reactor.go

+ 1
- 1
consensus/reactor.go View File

@ -493,7 +493,7 @@ func (conR *Reactor) sendNewRoundStepMessage(peer p2p.Peer) {
func (conR *Reactor) updateRoundStateRoutine() { func (conR *Reactor) updateRoundStateRoutine() {
t := time.NewTicker(100 * time.Microsecond) t := time.NewTicker(100 * time.Microsecond)
defer t.Stop() defer t.Stop()
for range t {
for range t.C {
if !conR.IsRunning() { if !conR.IsRunning() {
return return
} }


Loading…
Cancel
Save