From 8bc8d8388769c3cdcec69bd56b8388cab9f9bd67 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 15 Sep 2015 12:26:21 +0200 Subject: [PATCH] Show runtime bytecode. --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index 5aac30d7fe..d2b418f82b 100644 --- a/index.html +++ b/index.html @@ -512,6 +512,8 @@ input[readonly] { details.append($('
').text(funHashes));
             details.append($('Gas Estimates'));
             details.append($('
').text(formatGasEstimates(contract.gasEstimates)));
+            if (contract.runtimeBytecode && contract.runtimeBytecode.length > 0)
+                details.append(tableRow('Runtime Bytecode', contract.runtimeBytecode));
             if (contract.assembly !== null)
             {
                 details.append($('Assembly'));