remove uneeded file

pull/543/head
yann300 4 years ago committed by LianaHus
parent fb21f689c7
commit 444e6b1212
  1. 21
      apps/remix-ide/src/app/compiler/compiler-input.js

@ -1,21 +0,0 @@
'use strict'
module.exports = (sources, opts) => {
return JSON.stringify({
language: 'Solidity',
sources: sources,
settings: {
optimizer: {
enabled: opts.optimize === true || opts.optimize === 1,
runs: parseInt(opts.runs) || 200
},
libraries: opts.libraries,
outputSelection: {
'*': {
'': [ 'ast'],
'*': [ 'abi', 'metadata', 'devdoc', 'userdoc', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
}
}
}
})
}
Loading…
Cancel
Save