Commit 0d9769ba authored by Maurelian's avatar Maurelian Committed by GitHub

chore: Fix foundry config to use profiles key (#3088)

Address this warning: Unknown section [default] found in foundry.toml. This notation for profiles has been deprecated and may result in the profile not being registered in future versions. Please use [profile.default] instead or run .
parent cf25c4bf
[default] [profile.default]
src = 'contracts' src = 'contracts'
out = 'forge-artifacts' out = 'forge-artifacts'
optimizer = true optimizer = true
...@@ -19,5 +19,5 @@ build_info = true ...@@ -19,5 +19,5 @@ build_info = true
ffi = true ffi = true
fuzz_runs = 16 fuzz_runs = 16
[ci] [profile.ci]
fuzz_runs = 512 fuzz_runs = 512
[default] [profile.default]
# The source directory # The source directory
src = 'contracts/universal' src = 'contracts/universal'
# The test directory # The test directory
......
[default] [profile.default]
src = 'contracts' src = 'contracts'
out = 'forge-artifacts' out = 'forge-artifacts'
optimizer = true optimizer = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment