Skip to content
Merged
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
6 changes: 5 additions & 1 deletion runner/network/consensus/sequencer_consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,11 @@ func (f *SequencerConsensusClient) generatePayloadAttributes(sequencerTxs [][]by
BlobBaseFeeScalar: 1,
OperatorFeeScalar: 0,
OperatorFeeConstant: 0,
DAFootprintGasScalar: 400,
// Intentionally 0: disables the post-Jovian DA footprint cap so
// the benchmark measures raw EL gas throughput rather than L1 DA
// budget. With a non-zero scalar, cheap-tx workloads plateau at
// ~50% of the configured gas limit regardless of EL capacity.
DAFootprintGasScalar: 0,
}

source := derive.L1InfoDepositSource{
Expand Down
Loading