Skip to content

Commit

Permalink
chore: Fix foundry config to use profiles key (#3088)
Browse files Browse the repository at this point in the history
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 .
  • Loading branch information
maurelian committed Jul 26, 2022
1 parent cf25c4b commit 0d9769b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/contracts-bedrock/foundry.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[default]
[profile.default]
src = 'contracts'
out = 'forge-artifacts'
optimizer = true
Expand All @@ -19,5 +19,5 @@ build_info = true
ffi = true
fuzz_runs = 16

[ci]
[profile.ci]
fuzz_runs = 512
2 changes: 1 addition & 1 deletion packages/contracts-periphery/foundry.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[default]
[profile.default]
# The source directory
src = 'contracts/universal'
# The test directory
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests-bedrock/foundry.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[default]
[profile.default]
src = 'contracts'
out = 'forge-artifacts'
optimizer = true
Expand Down

0 comments on commit 0d9769b

Please sign in to comment.