mirror of https://github.com/status-im/web3.js.git
fixed const functions calls handling errors
This commit is contained in:
parent
858d0c62a4
commit
d0be181345
|
@ -2760,7 +2760,7 @@ SolidityFunction.prototype.signature = function () {
|
|||
|
||||
|
||||
SolidityFunction.prototype.unpackOutput = function (output) {
|
||||
if (output === null) {
|
||||
if (!output) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2760,7 +2760,7 @@ SolidityFunction.prototype.signature = function () {
|
|||
|
||||
|
||||
SolidityFunction.prototype.unpackOutput = function (output) {
|
||||
if (output === null) {
|
||||
if (!output) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -75,7 +75,7 @@ SolidityFunction.prototype.signature = function () {
|
|||
|
||||
|
||||
SolidityFunction.prototype.unpackOutput = function (output) {
|
||||
if (output === null) {
|
||||
if (!output) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue