From 9ed3b0f412b3693b9637b0962e63fd2a780b0bcf Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 8 Sep 2017 12:46:33 +0200 Subject: [PATCH] format json stringify --- src/app/execution/txLogger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/execution/txLogger.js b/src/app/execution/txLogger.js index 58f55e2da4..03bcdb9b47 100644 --- a/src/app/execution/txLogger.js +++ b/src/app/execution/txLogger.js @@ -141,7 +141,7 @@ function renderKnownTransaction (self, data) { gas: data.tx.gas, hash: data.tx.hash, input: data.tx.input, - logs: JSON.stringify(data.logs) || '0', + logs: JSON.stringify(data.logs, null, '\t') || '0', val: data.tx.value }) tx.appendChild(table)