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

Commit

Permalink
base branch
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Jun 27, 2023
1 parent de2f960 commit b0482b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
repository: taikoxyz/taiko-mono
path: ${{ env.TAIKO_MONO_DIR }}
ref: get_block_info
ref: alpha-4-base

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
Expand Down
6 changes: 3 additions & 3 deletions prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -266,12 +266,12 @@ func (p *Prover) eventLoop() {
}
case <-checkProofWindowExpiredTicker.C:
if err := p.checkProofWindowsExpired(p.ctx); err != nil {
log.Error("error checking proof window expired", "error", "err")
log.Error("error checking proof window expired", "error", err)
}
case proofWithHeader := <-p.proofGenerationCh:
p.submitProofOp(p.ctx, proofWithHeader)
case <-p.proveNotify:
if err := p.proveOp(nil); err != nil {
case blockId := <-p.proveNotify:
if err := p.proveOp(blockId); err != nil {
log.Error("Prove new blocks error", "error", err)
}
case <-p.blockProposedCh:
Expand Down

0 comments on commit b0482b4

Please sign in to comment.