From bc984b0091eeb34dc1de6af95efe74d97a200e8a Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Tue, 12 Dec 2023 08:09:22 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Cleanup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- foundry.toml | 2 +- hardhat.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/foundry.toml b/foundry.toml index 61e1906..f953e02 100644 --- a/foundry.toml +++ b/foundry.toml @@ -15,7 +15,7 @@ solc_version = '0.8.23' # override for the auto_detect_solc = true # enable auto-detection of the appropriate solc version to use offline = false # offline mode, if enabled, network access (downloading solc) is disallowed optimizer = true # enable or disable the solc optimizer -optimizer_runs = 999999 # the number of optimizer runs +optimizer_runs = 999_999 # the number of optimizer runs via_ir = false # whether to enable EVM bytecode generation through an intermediate representation (ir) or not verbosity = 3 # the verbosity of tests ignored_error_codes = [] # a list of ignored solc error codes diff --git a/hardhat.config.ts b/hardhat.config.ts index 9b9ea58..c156cd0 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -77,7 +77,7 @@ const config: HardhatUserConfig = { settings: { optimizer: { enabled: true, - runs: 999999, + runs: 999_999, }, evmVersion: "paris", // Prevent using the `PUSH0` opcode },