constructor ABI fixed

pull/7/head
aniket-engg 5 years ago committed by Aniket
parent e7b1ea88a6
commit 74b86f935f
  1. 2
      remix-lib/src/execution/txHelper.js

@ -63,7 +63,7 @@ module.exports = {
}, },
getConstructorInterface: function (abi) { 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') { if (typeof abi === 'string') {
try { try {
abi = JSON.parse(abi) abi = JSON.parse(abi)

Loading…
Cancel
Save