Skip to content

Commit

Permalink
♻️ Cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Dec 12, 2023
1 parent a9aa7d2 commit bc984b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const config: HardhatUserConfig = {
settings: {
optimizer: {
enabled: true,
runs: 999999,
runs: 999_999,
},
evmVersion: "paris", // Prevent using the `PUSH0` opcode
},
Expand Down

0 comments on commit bc984b0

Please sign in to comment.