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 e52775c commit 51b885c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/taiko-client/prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ func (p *Prover) eventLoop() {
reqProving()
case <-forceProvingTicker.C:
reqProving()
case <-forceProvingTicker.C:
case <-forceAggregatingTicker.C:
reqAggregation()
}
}
Expand Down Expand Up @@ -529,16 +529,16 @@ func (p *Prover) submitProofAggregationOp(batchProof *proofProducer.BatchProofs)
strings.Contains(err.Error(), proofSubmitter.ErrInvalidProof.Error()) {
log.Error(
"Proof submission reverted",
//"blockID", proofWithHeader.BlockID,
//"minTier", proofWithHeader.Meta.GetMinTier(),
"blockIDs", batchProof.BlockIDs,
"tier", batchProof.Tier,
"error", err,
)
return nil
}
log.Error(
"Submit proof error",
//"blockID", proofWithHeader.BlockID,
//"minTier", proofWithHeader.Meta.GetMinTier(),
"blockIDs", batchProof.BlockIDs,
"tier", batchProof.Tier,
"error", err,
)
return err
Expand Down

0 comments on commit 51b885c

Please sign in to comment.