Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
1819733e
Unverified
Commit
1819733e
authored
Aug 02, 2024
by
Matt Solomon
Committed by
GitHub
Aug 02, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: set default forge gas limit (#11342)
parent
e1c7dbe2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
foundry.toml
packages/contracts-bedrock/foundry.toml
+6
-0
No files found.
packages/contracts-bedrock/foundry.toml
View file @
1819733e
...
@@ -29,6 +29,12 @@ ast = true
...
@@ -29,6 +29,12 @@ ast = true
evm_version
=
"cancun"
evm_version
=
"cancun"
ignored_error_codes
=
[
"transient-storage"
,
"code-size"
,
"init-code-size"
]
ignored_error_codes
=
[
"transient-storage"
,
"code-size"
,
"init-code-size"
]
# We set the gas limit to max int64 to avoid running out of gas during testing, since the default
# gas limit is 1B and some of our tests require more gas than that, such as `test_callWithMinGas_noLeakageLow_succeeds`.
# We use this gas limit since it was the default gas limit prior to https://github.com/foundry-rs/foundry/pull/8274.
# Due to toml-rs limitations, if you increase the gas limit above this value it must be a string.
gas_limit
=
9223372036854775807
# Test / Script Runner Settings
# Test / Script Runner Settings
ffi
=
true
ffi
=
true
fs_permissions
=
[
fs_permissions
=
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment