We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccde074 commit fc9f7e4Copy full SHA for fc9f7e4
scripts/refresh_test_artifacts.py
@@ -31,6 +31,10 @@ def compile_contract(folder: Path) -> None:
31
str(contract_path),
32
"--out-dir",
33
"data",
34
+ # testing library does not perform ABI validation
35
+ # so ensure compiled contracts also do not, so behaviour matches
36
+ "--no-validate-abi-args",
37
+ "--no-validate-abi-return",
38
]
39
subprocess.run(
40
compile_cmd,
0 commit comments