Skip to content

Commit

Permalink
fix(proposer): remove error on safeDB not activated (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani authored Dec 11, 2024
1 parent 437a150 commit 5b7c0df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposer/op/proposer/range.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (l *L2OutputSubmitter) GetRangeProofBoundaries(ctx context.Context) error {
// splitting algorithm. Otherwise, we use the simple range splitting algorithm.
safeDBActivated, err := l.isSafeDBActivated(ctx, rollupClient)
if err != nil {
return fmt.Errorf("failed to check if safeDB is activated: %w", err)
l.Log.Warn("safeDB is not activated. Using simple range splitting algorithm.", "err", err)
}

var spans []Span
Expand Down

0 comments on commit 5b7c0df

Please sign in to comment.