-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
optimism: bump gaslimit to 10 million #870 #871
Changes from all commits
0e006c7
74f4094
4b7a662
aa58f6a
b906b8f
51e92cc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,7 +115,7 @@ export const makeStateDump = async (cfg: RollupDeployConfig): Promise<any> => { | |
deploymentSigner: signer, | ||
ovmGasMeteringConfig: { | ||
minTransactionGasLimit: 0, | ||
maxTransactionGasLimit: 9_000_000, | ||
maxTransactionGasLimit: 10_000_000, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since we've upped the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it ok if we handle that in #762? |
||
maxGasPerQueuePerEpoch: 1_000_000_000_000, | ||
secondsPerEpoch: 0, | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const SEQUENCER_GAS_LIMIT = 9_000_000 // TODO: Remove and use value from event. | ||
export const SEQUENCER_GAS_LIMIT = 10_000_000 // TODO: Remove and use value from event. | ||
export const SEQUENCER_ENTRYPOINT_ADDRESS = | ||
'0x4200000000000000000000000000000000000005' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a question on how the update to
ExecutionManager.maxTransactionGasLimit
was done here since I am readingmaxTransactionGasLimit
being stored in slot2
not4
. What am I missing?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We spoke out of band and have agreed that the slot is
4
, see #840