fix compiler input

pull/7/head
yann300 7 years ago
parent 7e46022b41
commit b2d9ae0a23
  1. 12
      remix-lib/src/helpers/compilerHelper.js

@ -14,12 +14,12 @@ function compilerInput (contracts) {
optimizer: {
enabled: false,
runs: 500
}
},
outputSelection: {
'*': {
'': [ 'legacyAST' ],
'*': [ 'abi', 'metadata', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
},
outputSelection: {
'*': {
'': [ 'legacyAST' ],
'*': [ 'abi', 'metadata', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
}
}
}
})

Loading…
Cancel
Save