diff --git a/ethereum/foundry.toml b/ethereum/foundry.toml index 55c76e6d..8010bc73 100644 --- a/ethereum/foundry.toml +++ b/ethereum/foundry.toml @@ -1,7 +1,7 @@ [profile.default] solc_version = '0.8.4' optimizer = true -optimizer_runs = 200 +optimizer_runs = 10000 src = 'contracts' # We put the tests into the forge-test directory (instead of test) so that # truffle doesn't try to build them diff --git a/ethereum/truffle-config.js b/ethereum/truffle-config.js index 9e3767b0..042eebf4 100644 --- a/ethereum/truffle-config.js +++ b/ethereum/truffle-config.js @@ -230,7 +230,7 @@ module.exports = { settings: { optimizer: { enabled: true, - runs: 200, + runs: 10000, }, }, },