Skip to content

Commit

Permalink
Added a constructor to BreakInvariantBounty. (OpenZeppelin#1395)
Browse files Browse the repository at this point in the history
(cherry picked from commit 3acc2b4)
  • Loading branch information
nventuro committed Oct 18, 2018
1 parent 8d6250c commit 9c76d28
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion contracts/drafts/BreakInvariantBounty.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ import "../ownership/Ownable.sol";
* @dev This bounty will pay out to a researcher if they break invariant logic of the contract.
*/
contract BreakInvariantBounty is PullPayment, Ownable {
bool private _claimable = true;
bool private _claimable;
mapping(address => address) private _researchers;

event TargetCreated(address createdAddress);
event BountyCanceled();

constructor() public {
_claimable = true;
}

/**
* @dev Fallback function allowing the contract to receive funds, if they haven't already been claimed.
*/
Expand Down

0 comments on commit 9c76d28

Please sign in to comment.