From 6f04478ee6d90eeaeb6026731b4f2451c8415c94 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 2 Dec 2016 14:24:21 +0000 Subject: [PATCH] Display the entire metadata too --- src/app/ui-helper.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/ui-helper.js b/src/app/ui-helper.js index 70c8616384..a732fbae7b 100644 --- a/src/app/ui-helper.js +++ b/src/app/ui-helper.js @@ -130,6 +130,10 @@ module.exports = { var button = $('') var details = $('
') + if (contract.metadata) { + details.append(this.preRow('Metadata', contract.metadata)) + } + var funHashes = '' for (var fun in contract.functionHashes) { funHashes += contract.functionHashes[fun] + ' ' + fun + '\n'