Skip to content

Commit

Permalink
Added a constructor to BreakInvariantBounty. (#1395)
Browse files Browse the repository at this point in the history
  • Loading branch information
nventuro authored and Leo Arias committed Oct 8, 2018
1 parent f7e53d9 commit 3acc2b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion contracts/bounties/BreakInvariantBounty.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,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 3acc2b4

Please sign in to comment.