Merge pull request #927 from ethereum/jsonio-fix

jsonio: both libraries and outputSelection is part of settings
pull/1/head
yann300 7 years ago committed by GitHub
commit 79021679a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/app/compiler/compiler-input.js

@ -8,7 +8,6 @@ module.exports = (sources, opts) => {
optimizer: {
enabled: opts.optimize === true,
runs: 500
}
},
libraries: opts.libraries,
outputSelection: {
@ -17,5 +16,6 @@ module.exports = (sources, opts) => {
'*': [ 'abi', 'metadata', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
}
}
}
})
}

Loading…
Cancel
Save