changed instances of uint to uint256; fixes issue #226

This commit is contained in:
Brian Guo
2017-07-19 09:59:46 -04:00
parent e2fdf09e9b
commit 93b953fb48
13 changed files with 28 additions and 28 deletions

View File

@ -15,7 +15,7 @@ contract ReentrancyMock is ReentrancyGuard {
counter += 1;
}
function countLocalRecursive(uint n) public nonReentrant {
function countLocalRecursive(uint256 n) public nonReentrant {
if(n > 0) {
count();
countLocalRecursive(n - 1);