Skip to content

Commit

Permalink
Merge pull request #28 from bitcoinbrisbane/patch-1
Browse files Browse the repository at this point in the history
Add require reason
  • Loading branch information
chaitanyapotti committed Jul 10, 2019
2 parents 5e6ff34 + 7f08463 commit 5741085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/MembershipVerificationToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ contract MembershipVerificationToken is IERC1261, Ownable, ERC165 {
}
function getAttributes(address _to) external view returns (uint[]) {
require(_to != address(0));
require(_to != address(0), "Address cannot be zero");
return currentHolders[_to].data;
}
Expand Down

0 comments on commit 5741085

Please sign in to comment.