Skip to content

Commit

Permalink
fix: split midblock block number
Browse files Browse the repository at this point in the history
  • Loading branch information
ctian1 committed Dec 30, 2024
1 parent 3e3a2ff commit c96e3f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposer/op/proposer/prove.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (l *L2OutputSubmitter) RetryRequest(req *ent.ProofRequest, status ProofStat
l.Log.Error("failed to retry first half of proof request", "err", err)
return err
}
err = l.db.NewEntry(req.Type, midBlock+1, req.EndBlock)
err = l.db.NewEntry(req.Type, midBlock, req.EndBlock)
if err != nil {
l.Log.Error("failed to retry second half of proof request", "err", err)
return err
Expand Down

0 comments on commit c96e3f4

Please sign in to comment.