Skip to content

Commit

Permalink
Merge pull request #528 from ethereum/solcjs-optimize-false-by-default
Browse files Browse the repository at this point in the history
Use minimal optimizer settings in solcjs when --optimize flag is missing
  • Loading branch information
chriseth committed Jun 14, 2021
2 parents 5ee9c74 + d1e73ed commit 953394e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solcjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ program.name('solcjs');
program.version(solc.version());
program
.option('--version', 'Show version and exit.')
.option('--optimize', 'Enable bytecode optimizer.')
.option('--optimize', 'Enable bytecode optimizer.', false)
.option('--bin', 'Binary of the contracts in hex.')
.option('--abi', 'ABI of the contracts.')
.option('--standard-json', 'Turn on Standard JSON Input / Output mode.')
Expand Down

0 comments on commit 953394e

Please sign in to comment.