Skip to content

Commit

Permalink
Merge pull request #534 from mmmmmagina/master
Browse files Browse the repository at this point in the history
fix List<Boolean> type transfer bug
  • Loading branch information
conor10 committed Jul 5, 2018
2 parents cf4a5ad + caa00d8 commit 716ae3f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions abi/src/main/java/org/web3j/abi/datatypes/Bool.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ public Bool(boolean value) {
this.value = value;
}

public Bool(Boolean value) {
this.value = value;
}

@Override
public String getTypeAsString() {
return TYPE_NAME;
Expand Down

0 comments on commit 716ae3f

Please sign in to comment.