mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 03:28:07 +00:00
fixed const functions calls handling errors
This commit is contained in:
parent
858d0c62a4
commit
d0be181345
2
dist/web3-light.js
vendored
2
dist/web3-light.js
vendored
@ -2760,7 +2760,7 @@ SolidityFunction.prototype.signature = function () {
|
||||
|
||||
|
||||
SolidityFunction.prototype.unpackOutput = function (output) {
|
||||
if (output === null) {
|
||||
if (!output) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
2
dist/web3-light.js.map
vendored
2
dist/web3-light.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/web3-light.min.js
vendored
4
dist/web3-light.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/web3.js
vendored
2
dist/web3.js
vendored
@ -2760,7 +2760,7 @@ SolidityFunction.prototype.signature = function () {
|
||||
|
||||
|
||||
SolidityFunction.prototype.unpackOutput = function (output) {
|
||||
if (output === null) {
|
||||
if (!output) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
2
dist/web3.js.map
vendored
2
dist/web3.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/web3.min.js
vendored
4
dist/web3.min.js
vendored
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…
x
Reference in New Issue
Block a user