From dc6db65cea7b767c72e57894d43734b9a17092ca Mon Sep 17 00:00:00 2001 From: filip mertens Date: Wed, 18 May 2022 13:33:21 +0200 Subject: [PATCH] types --- libs/remix-solidity/src/compiler/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-solidity/src/compiler/types.ts b/libs/remix-solidity/src/compiler/types.ts index 912c1793cd..76ed36ca17 100644 --- a/libs/remix-solidity/src/compiler/types.ts +++ b/libs/remix-solidity/src/compiler/types.ts @@ -123,7 +123,7 @@ export interface CompilerInput { outputSelection?: { '*': { '': [ 'ast' ], - //'*': [ 'abi', 'metadata', 'devdoc', 'userdoc', 'storageLayout', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates', 'evm.assembly' ] + '*': [ 'abi', 'metadata', 'devdoc', 'userdoc', 'storageLayout', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates', 'evm.assembly' ] } } }