SecureTargetBounty.sol 339 B

1234567891011121314151617
  1. pragma solidity ^0.4.18;
  2. import {Bounty, Target} from "../../contracts/Bounty.sol";
  3. contract SecureTargetMock is Target {
  4. function checkInvariant() public returns(bool) {
  5. return true;
  6. }
  7. }
  8. contract SecureTargetBounty is Bounty {
  9. function deployContract() internal returns (address) {
  10. return new SecureTargetMock();
  11. }
  12. }