You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
web3.js has error (param.dynamicPart() is "")
The error is BigNumber Error: new BigNumber() not a base 16 number (as in #211)
SolidityType.prototype.formatOutput = function(param, arrayType) {
if (arrayType) {
// let's assume, that we solidity will never return long arrays :P
var result = [];
var length = new BigNumber(param.dynamicPart().slice(0, 64), 16); <--- error
Here is the abi snippet if it helps; the return is array int256[] but with 0 elements:
develop 16861fc
Make this call to specified contract:
Here's the response:
web3.js has error (param.dynamicPart() is "")
The error is BigNumber Error: new BigNumber() not a base 16 number (as in #211)
Here is the abi snippet if it helps; the return is array int256[] but with 0 elements:
The text was updated successfully, but these errors were encountered: