Skip to content

Commit

Permalink
Merge branch 'main' into fix/withdraw-fee
Browse files Browse the repository at this point in the history
  • Loading branch information
Ja7ad authored Nov 19, 2024
2 parents b451b58 + 3677b2b commit 7c9ef77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func (cs *consensus) moveToNewHeight() {
func (cs *consensus) scheduleTimeout(duration time.Duration, height uint32, round int16, target tickerTarget) {
ticker := &ticker{duration, height, round, target}
timer := time.NewTimer(duration)
cs.logger.Trace("new timer scheduled ⏱️", "duration", duration, "height", height, "round", round, "target", target)
cs.logger.Debug("new timer scheduled ⏱️", "duration", duration, "height", height, "round", round, "target", target)

go func() {
<-timer.C
Expand Down

0 comments on commit 7c9ef77

Please sign in to comment.