Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
feat(driver): update TaikoL2.anchor transaction gas limit (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Feb 19, 2024
1 parent c853370 commit fb9cd12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion driver/anchor_tx_constructor/anchor_tx_constructor.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

// Each TaikoL2.anchor transaction should use this value as it's gas limit.
const AnchorGasLimit = 1_000_000
const AnchorGasLimit = 250_000

// AnchorTxConstructor is responsible for assembling the anchor transaction (TaikoL2.anchor) in
// each L2 block, which is always the first transaction.
Expand Down
2 changes: 1 addition & 1 deletion pkg/rpc/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var (
syncProgressRecheckDelay = 12 * time.Second
waitL1OriginPollingInterval = 3 * time.Second
defaultWaitL1OriginTimeout = 3 * time.Minute
defaultMaxTransactionsPerBlock = uint64(79)
defaultMaxTransactionsPerBlock = uint64(149)

// Requset urls.
sidecarsRequestURL = "eth/v1/beacon/blob_sidecars/%d"
Expand Down

0 comments on commit fb9cd12

Please sign in to comment.