Merge pull request #919 from ethereum/jsonio-fix-ast

Request proper legacyAST and legacyAssembly
pull/1/head
yann300 7 years ago committed by GitHub
commit e1ce4a3055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/app/compiler/compiler-input.js

@ -13,7 +13,8 @@ module.exports = (sources, opts) => {
libraries: opts.libraries,
outputSelection: {
'*': {
'*': [ 'metadata', 'evm.bytecode', 'evm.deployedBytecode', 'abi', 'legacyAST', 'metadata', 'evm.assembly', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
'': [ 'legacyAST' ],
'*': [ 'abi', 'metadata', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
}
}
})

Loading…
Cancel
Save