Merge pull request #951 from ethereum/fixOptimisation

Double check for optimisation
pull/1/head
yann300 7 years ago committed by GitHub
commit 40658b2780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/app/compiler/compiler-input.js

@ -6,7 +6,7 @@ module.exports = (sources, opts) => {
sources: sources,
settings: {
optimizer: {
enabled: opts.optimize === true,
enabled: opts.optimize === true || opts.optimize === 1,
runs: 500
},
libraries: opts.libraries,

Loading…
Cancel
Save