Skip to content

Commit

Permalink
[Test] fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
ibmibmibm authored and CaptainVincent committed Sep 3, 2019
1 parent 433d714 commit d863739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/release/0-0-1.sol
Expand Up @@ -17,7 +17,7 @@ contract SafeMath {

function mul(uint256 a, uint256 b) public pure returns (uint256) {
if (a == 0) {
return uint64(0);
return uint256(0);
}

uint256 c = a * b;
Expand Down

0 comments on commit d863739

Please sign in to comment.