Skip to content

Commit

Permalink
fixed const functions calls handling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
debris committed May 24, 2015
1 parent 858d0c6 commit d0be181
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/web3-light.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/web3-light.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/web3-light.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/web3.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/web3.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/web3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/web3/function.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ SolidityFunction.prototype.signature = function () {


SolidityFunction.prototype.unpackOutput = function (output) {
if (output === null) {
if (!output) {
return;
}

Expand Down

0 comments on commit d0be181

Please sign in to comment.