Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YoGhurt111 committed Oct 9, 2024
1 parent 4360b2a commit af76a29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/taiko-client/prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@ func (p *Prover) eventLoop() {
log.Error("Prove new blocks error", "error", err)
}
case tier := <-p.aggregationNotify:
if err := p.aggregateOp(tier); err != nil {
log.Error("Aggregate proofs error", "error", err)
}
p.withRetry(func() error {
return p.aggregateOp(tier)
})
case e := <-blockVerifiedCh:
p.blockVerifiedHandler.Handle(encoding.BlockVerifiedEventToV2(e))
case e := <-transitionProvedCh:
Expand Down

0 comments on commit af76a29

Please sign in to comment.