Commit 162cc107 authored by Alex Beregszaszi's avatar Alex Beregszaszi

Support missing opcodes field

parent f7bb50cc
...@@ -151,7 +151,7 @@ module.exports = { ...@@ -151,7 +151,7 @@ module.exports = {
details.append(this.tableRow('Runtime Bytecode', contract.runtimeBytecode)); details.append(this.tableRow('Runtime Bytecode', contract.runtimeBytecode));
} }
if (contract.opcodes !== '') { if (contract.opcodes !== undefined && contract.opcodes !== '') {
details.append(this.tableRow('Opcodes', contract.opcodes)); details.append(this.tableRow('Opcodes', contract.opcodes));
} }
......
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