feat: move mock solidity contracts to mocks/ folder

This commit is contained in:
Matt Condon
2017-11-24 14:41:49 +02:00
parent 58abd66969
commit 227a335399
40 changed files with 21 additions and 21 deletions

View File

@ -0,0 +1,17 @@
pragma solidity ^0.4.18;
import {Bounty, Target} from "../../contracts/Bounty.sol";
contract InsecureTargetMock is Target {
function checkInvariant() public returns(bool){
return false;
}
}
contract InsecureTargetBounty is Bounty {
function deployContract() internal returns (address) {
return new InsecureTargetMock();
}
}