diff --git a/op-node/rollup/derive/batches.go b/op-node/rollup/derive/batches.go index b5ca17088a41..e4acd71d1be5 100644 --- a/op-node/rollup/derive/batches.go +++ b/op-node/rollup/derive/batches.go @@ -47,7 +47,7 @@ func CheckBatch(ctx context.Context, cfg *rollup.Config, log log.Logger, l1Block log.Error("failed type assertion to SpanBatch") return BatchDrop } - if !cfg.IsSpanBatch(batch.Batch.GetTimestamp()) { + if !cfg.IsSpanBatch(batch.Batch.GetTimestamp()) || !cfg.IsSpanBatch(batch.L1InclusionBlock.Time) { log.Warn("received SpanBatch before SpanBatch hard fork") return BatchDrop }