We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eabe3f commit 10584d3Copy full SHA for 10584d3
ethereum/contracts/foundry.toml
@@ -2,8 +2,10 @@
2
src = "src"
3
out = "out"
4
libs = ["lib"]
5
+ignored_error_codes = ["code-size"]
6
7
[profile.ci]
8
9
10
11
ethereum/tests/src/setupAnvil.ts
@@ -5,7 +5,7 @@ let anvil: ChildProcess;
export function setup() {
assert(anvil === undefined, 'Anvil already running');
- anvil = spawn('anvil');
+ anvil = spawn('anvil', ['--code-size-limit', '100000']);
}
export function teardown() {
0 commit comments