You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
290 B
16 lines
290 B
8 years ago
|
pragma solidity ^0.4.4;
|
||
8 years ago
|
|
||
8 years ago
|
import "../Bounty.sol";
|
||
|
|
||
8 years ago
|
contract InsecureTargetMock {
|
||
8 years ago
|
function checkInvariant() returns(bool){
|
||
8 years ago
|
return false;
|
||
|
}
|
||
|
}
|
||
8 years ago
|
|
||
8 years ago
|
contract InsecureTargetBounty is Bounty {
|
||
|
function deployContract() internal returns (address) {
|
||
8 years ago
|
return new InsecureTargetMock();
|
||
|
}
|
||
|
}
|