From 8ef8a691de2533c9833b495a192027007d25353b Mon Sep 17 00:00:00 2001 From: yann300 Date: Mon, 29 Jan 2018 11:48:03 +0100 Subject: [PATCH] Update txFormat.js --- src/app/execution/txFormat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/execution/txFormat.js b/src/app/execution/txFormat.js index 5e2b53ba30..cf35ac02b8 100644 --- a/src/app/execution/txFormat.js +++ b/src/app/execution/txFormat.js @@ -50,7 +50,7 @@ module.exports = { var data = '' var dataHex = '' - if (params.indexOf('"0x') === 0) { + if (params.indexOf('0x') === 0) { dataHex = params.match(/"(.*?)"/)[1].replace('0x', '') data = Buffer.from(dataHex, 'hex') } else {