Commit 6f04478e authored by Alex Beregszaszi's avatar Alex Beregszaszi

Display the entire metadata too

parent 41982121
......@@ -130,6 +130,10 @@ module.exports = {
var button = $('<button>Toggle Details</button>')
var details = $('<div style="display: none;"/>')
if (contract.metadata) {
details.append(this.preRow('Metadata', contract.metadata))
}
var funHashes = ''
for (var fun in contract.functionHashes) {
funHashes += contract.functionHashes[fun] + ' ' + fun + '\n'
......
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