fixed const functions calls handling errors

This commit is contained in:
Marek Kotewicz 2015-05-24 14:34:00 +02:00
parent 858d0c62a4
commit d0be181345
7 changed files with 9 additions and 9 deletions

2
dist/web3-light.js vendored
View File

@ -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

2
dist/web3.js vendored
View File

@ -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

File diff suppressed because one or more lines are too long

4
dist/web3.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -75,7 +75,7 @@ SolidityFunction.prototype.signature = function () {
SolidityFunction.prototype.unpackOutput = function (output) {
if (output === null) {
if (!output) {
return;
}