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

Commit

Permalink
fix(prover): fix an unlock issue
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Jul 4, 2023
1 parent e36c76c commit 9e67f12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Push docker image to GCR"

on:
push:
branches: [main]
branches: [main,fix-lock]
tags:
- "v*"

Expand Down
2 changes: 1 addition & 1 deletion prover/prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ func (p *Prover) onBlockProposed(
// if we cant prove it
p.currentBlocksWaitingForProofWindowMutex.Lock()
p.currentBlocksWaitingForProofWindow = append(p.currentBlocksWaitingForProofWindow, event.Meta.Id)
p.currentBlocksBeingProvenMutex.Unlock()
p.currentBlocksWaitingForProofWindowMutex.Unlock()

return nil
}
Expand Down

0 comments on commit 9e67f12

Please sign in to comment.