From 0b96c9de34a973a3b75873fa73bb994f8399d91b Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Thu, 1 Sep 2016 02:54:48 +0100 Subject: [PATCH] Remove Solidity Interface from the output --- src/app/ui-helper.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/ui-helper.js b/src/app/ui-helper.js index 9d0f62310a..6c7c612d28 100644 --- a/src/app/ui-helper.js +++ b/src/app/ui-helper.js @@ -122,8 +122,7 @@ module.exports = { detailsOpen: {}, getDetails: function (contract, source, contractName) { var button = $(''); - var details = $('
') - .append(this.tableRow('Solidity Interface', contract.solidity_interface)); + var details = $('
'); if (contract.opcodes !== '') { details.append(this.tableRow('Opcodes', contract.opcodes));