From f5ac23dd0282026b519af0d175f6b9b1fc1b3a50 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Thu, 9 Jan 2020 15:14:41 +0530 Subject: [PATCH] constructor ABI fixed --- remix-lib/src/execution/txHelper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-lib/src/execution/txHelper.js b/remix-lib/src/execution/txHelper.js index 9e2e54786..630a97228 100644 --- a/remix-lib/src/execution/txHelper.js +++ b/remix-lib/src/execution/txHelper.js @@ -63,7 +63,7 @@ module.exports = { }, getConstructorInterface: function (abi) { - const funABI = { 'name': '', 'inputs': [], 'type': 'constructor', 'payable': 'false', 'outputs': [] } + const funABI = { 'name': '', 'inputs': [], 'type': 'constructor', 'payable': false, 'outputs': [] } if (typeof abi === 'string') { try { abi = JSON.parse(abi)