Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
feat: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Apr 4, 2024
1 parent 84384c7 commit d9522db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion proposer/proposer.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,9 @@ func (p *Proposer) eventLoop() {
return
// proposing interval timer has been reached
case <-p.proposingTimer.C:
// Attempt propose operation
metrics.ProposerProposeEpochCounter.Inc(1)

// Attempt a proposing operation
if err := p.ProposeOp(p.ctx); err != nil {
log.Error("Proposing operation error", "error", err)
continue
Expand Down

0 comments on commit d9522db

Please sign in to comment.