fix encoding params

pull/1/head
yann300 7 years ago
parent 2af9cd5f09
commit 386a634209
  1. 3
      src/app/execution/txHelper.js

@ -8,6 +8,9 @@ module.exports = {
if (funABI.inputs && funABI.inputs.length) {
for (var i = 0; i < funABI.inputs.length; i++) {
types.push(funABI.inputs[i].type)
if (args.length < types.length) {
args.push('')
}
}
}

Loading…
Cancel
Save