Skip to content

Commit 003f79f

Browse files
fix(realtime): only increase gas for bridge/UserOp txs, not anchor
The anchor tx has a required gas limit enforced by the L2 engine. Revert anchor to 1M, keep processMessage and UserOp txs at 3M. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 58422a0 commit 003f79f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

realtime/src/l2/execution_layer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ impl L2ExecutionLayer {
103103
let call_builder = self
104104
.anchor
105105
.anchorV4WithSignalSlots(anchor_block_params.0, anchor_block_params.1)
106-
.gas(3_000_000)
106+
.gas(1_000_000)
107107
.max_fee_per_gas(u128::from(l2_slot_info.base_fee()))
108108
.max_priority_fee_per_gas(0)
109109
.nonce(nonce)

0 commit comments

Comments
 (0)