Skip to content

Commit

Permalink
Merge pull request #5 from paritytech/cl/enable-solc-optimizer
Browse files Browse the repository at this point in the history
enable the solc optimizer
  • Loading branch information
pgherveou authored Dec 4, 2024
2 parents 8e2cdd6 + 9eb21b1 commit bcb4434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export async function compile(sources: SolcInput): Promise<SolcOutput> {
language: 'Solidity',
sources,
settings: {
optimizer: { enabled: false, runs: 200 },
optimizer: { enabled: true, runs: 200 },
outputSelection: {
'*': {
'*': ['abi'],
Expand Down

0 comments on commit bcb4434

Please sign in to comment.