-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I tried increasing gas limit of anvil and disabling it altogether (--disable-block-gas-limit flag) but it didn't help. In `forge` there is a `--memory-limit` which is supposed to directly affect this value but this flag is not exposed on anvil. What is weird that the issue occurs when running "empty block" test case in `integration_l1_publisher.test.ts` but it doesn't occur for the bloated one. This makes me think that it probably really is some kind of bug and not just a gas limit issue. What is also weird is that for a [version from 4 days ago](https://github.com/foundry-rs/foundry/releases/tag/nightly-9ec42d6f03bafbd3b9bb8e258ca67d7887b1f2e7) I was getting the error as well. I would not expect this given that the issue started occurring yesterday. I [asked on Foundry support channel](https://t.me/foundry_support/51173) and hopefully we will get some feedback. In the meanwhile I found a version for which all seems to work so I would merge this PR to not waste too much time on this. We can just revert it in the future.
- Loading branch information
Showing
8 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: '3' | ||
services: | ||
fork: | ||
image: ghcr.io/foundry-rs/foundry:nightly-a44aa13cfc23491ba32aaedc093e9488c1a6db43 | ||
image: ghcr.io/foundry-rs/foundry:nightly-de33b6af53005037b463318d2628b5cfcaf39916 | ||
entrypoint: 'anvil -p 8545 --host 0.0.0.0 --chain-id 31337' | ||
ports: | ||
- '8545:8545' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters