From d9294fdf5413b010f41143c280ca560dc33fb36d Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Sat, 29 Oct 2022 13:08:59 +0300 Subject: [PATCH] chore: update "fuzz" object in Foundry config --- foundry.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/foundry.toml b/foundry.toml index d93c426..afdc497 100644 --- a/foundry.toml +++ b/foundry.toml @@ -3,7 +3,7 @@ [profile.default] auto_detect_solc = false bytecode_hash = "none" -fuzz_runs = 256 +fuzz = { runs = 256 } gas_reports = ["*"] libs = ["lib"] optimizer = true @@ -13,6 +13,7 @@ solc = "0.8.17" src = "src" test = "test" + [profile.ci] -fuzz_runs = 1_000 +fuzz = { runs = 1_000 } verbosity = 4