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

Commit

Permalink
feat: update p.proveOp()
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Mar 9, 2024
1 parent ed1e2e9 commit 91c91bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,9 @@ func (p *Prover) eventLoop() {
case req := <-p.proofContestCh:
p.withRetry(func() error { return p.contestProofOp(req) })
case <-p.proveNotify:
p.proveOp()
if err := p.proveOp(); err != nil {
log.Error("Prove new blocks error", "error", err)
}
case e := <-blockVerifiedCh:
p.blockVerifiedHandler.Handle(e)
case e := <-transitionProvedCh:
Expand Down

0 comments on commit 91c91bb

Please sign in to comment.