diff --git a/src/app/ui/txLogger.js b/src/app/ui/txLogger.js index b3592848e9..92eae0c9b5 100644 --- a/src/app/ui/txLogger.js +++ b/src/app/ui/txLogger.js @@ -400,14 +400,14 @@ function createTable (opts) { table.appendChild(yo` status - ${opts.status}${msg} + ${opts.status}${msg} `) } var transactionHash = yo` transaction hash - ${opts.hash} + ${opts.hash} ${copyToClipboard(() => opts.hash)} @@ -417,7 +417,7 @@ function createTable (opts) { var contractAddress = yo` contract address - ${opts.contractAddress} + ${opts.contractAddress} ${copyToClipboard(() => opts.contractAddress)} @@ -427,7 +427,7 @@ function createTable (opts) { var from = yo` from - ${opts.from} + ${opts.from} ${copyToClipboard(() => opts.from)} @@ -444,7 +444,7 @@ function createTable (opts) { var to = yo` to - ${toHash} + ${toHash} ${copyToClipboard(() => data.to ? data.to : toHash)} @@ -454,7 +454,7 @@ function createTable (opts) { var gas = yo` gas - ${opts.gas} gas + ${opts.gas} gas ${copyToClipboard(() => opts.gas)} @@ -469,7 +469,7 @@ function createTable (opts) { table.appendChild(yo` transaction cost - ${opts.transactionCost} gas ${callWarning} + ${opts.transactionCost} gas ${callWarning} ${copyToClipboard(() => opts.transactionCost)} `) @@ -479,7 +479,7 @@ function createTable (opts) { table.appendChild(yo` execution cost - ${opts.executionCost} gas ${callWarning} + ${opts.executionCost} gas ${callWarning} ${copyToClipboard(() => opts.executionCost)} `) @@ -488,7 +488,7 @@ function createTable (opts) { var hash = yo` hash - ${opts.hash} + ${opts.hash} ${copyToClipboard(() => opts.hash)} @@ -498,7 +498,7 @@ function createTable (opts) { var input = yo` input - ${helper.shortenHexData(opts.input)} + ${helper.shortenHexData(opts.input)} ${copyToClipboard(() => opts.input)} @@ -509,7 +509,7 @@ function createTable (opts) { var inputDecoded = yo` decoded input - ${opts['decoded input']} + ${opts['decoded input']} ${copyToClipboard(() => opts['decoded input'])} ` @@ -520,7 +520,7 @@ function createTable (opts) { var outputDecoded = yo` decoded output - ${opts['decoded output']} + ${opts['decoded output']} ${copyToClipboard(() => opts['decoded output'])} ` @@ -534,7 +534,7 @@ function createTable (opts) { var logs = yo` logs - + ${JSON.stringify(stringified, null, '\t')} ${copyToClipboard(() => JSON.stringify(stringified, null, '\t'))} ${copyToClipboard(() => JSON.stringify(opts.logs.raw || '0'))} @@ -547,7 +547,7 @@ function createTable (opts) { val = yo` value - ${val} wei + ${val} wei ${copyToClipboard(() => `${val} wei`)}