From 74b86f935f9cf85b5b201f7cf30bb941eabbf800 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 9e2e54786c..630a972289 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)