Add killable to bounty

This commit is contained in:
Makoto Inoue
2016-10-27 22:08:36 +01:00
parent e35ba313a7
commit 37f4ff8d3e
2 changed files with 22 additions and 3 deletions

View File

@ -1,6 +1,6 @@
pragma solidity ^0.4.0;
import '../PullPayment.sol';
import '../Killable.sol';
/*
* Bounty
* This bounty will pay out if you can cause a SimpleToken's balance
@ -16,7 +16,7 @@ contract Target {
function checkInvariant() returns(bool);
}
contract SimpleTokenBounty is PullPayment {
contract SimpleTokenBounty is PullPayment, Killable {
Target target;
bool public claimed;
address public factoryAddress;