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
283 B
16 lines
283 B
8 years ago
|
pragma solidity ^0.4.4;
|
||
8 years ago
|
|
||
8 years ago
|
import "../Bounty.sol";
|
||
|
|
||
8 years ago
|
contract SecureTargetMock {
|
||
8 years ago
|
function checkInvariant() returns(bool){
|
||
8 years ago
|
return true;
|
||
|
}
|
||
|
}
|
||
8 years ago
|
|
||
8 years ago
|
contract SecureTargetBounty is Bounty {
|
||
|
function deployContract() internal returns (address) {
|
||
8 years ago
|
return new SecureTargetMock();
|
||
|
}
|
||
|
}
|