Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/sequencer/src/execution/block_context_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,9 @@ impl<Mempool: L2TransactionPool> BlockContextProvider<Mempool> {
native_price: rebuild.replay_record.block_context.native_price,
pubdata_price: rebuild.replay_record.block_context.pubdata_price,
block_number,
timestamp: rebuild.replay_record.block_context.timestamp,
// Since we are rebuilding the block we stamp it with a fresh timestamp.
// This allows us to rebuild and commit potentially old blocks.
timestamp: (millis_since_epoch() / 1000) as u64,
blob_fee: rebuild.replay_record.block_context.blob_fee,
chain_id: self.chain_id,
coinbase: self.fee_collector_address,
Expand Down