Remove solidity warnings in tests

This commit is contained in:
Alejandro Santander
2017-11-23 10:57:36 -03:00
parent b50391862c
commit c6e0edb268
22 changed files with 44 additions and 44 deletions

View File

@ -5,7 +5,7 @@ import {Bounty, Target} from "../../contracts/Bounty.sol";
contract InsecureTargetMock is Target {
function checkInvariant() returns(bool){
function checkInvariant() public returns(bool){
return false;
}
}