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 (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Jul 4, 2023
1 parent e36c76c commit 392eb78
Showing 1 changed file with 1 addition and 1 deletion.
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 392eb78

Please sign in to comment.