Commit 78f477fe authored by chriseth's avatar chriseth

Merge pull request #9 from chriseth/showRuntimeBytecode

Show runtime bytecode.
parents 4c3ca495 8bc8d838
......@@ -512,6 +512,8 @@ input[readonly] {
details.append($('<pre/>').text(funHashes));
details.append($('<span class="col1">Gas Estimates</span>'));
details.append($('<pre/>').text(formatGasEstimates(contract.gasEstimates)));
if (contract.runtimeBytecode && contract.runtimeBytecode.length > 0)
details.append(tableRow('Runtime Bytecode', contract.runtimeBytecode));
if (contract.assembly !== null)
{
details.append($('<span class="col1">Assembly</span>'));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment