We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e53d9 commit 3acc2b4Copy full SHA for 3acc2b4
contracts/bounties/BreakInvariantBounty.sol
@@ -8,12 +8,16 @@ import "../ownership/Ownable.sol";
8
* @dev This bounty will pay out to a researcher if they break invariant logic of the contract.
9
*/
10
contract BreakInvariantBounty is PullPayment, Ownable {
11
- bool private _claimable = true;
+ bool private _claimable;
12
mapping(address => address) private _researchers;
13
14
event TargetCreated(address createdAddress);
15
event BountyCanceled();
16
17
+ constructor() public {
18
+ _claimable = true;
19
+ }
20
+
21
/**
22
* @dev Fallback function allowing the contract to receive funds, if they haven't already been claimed.
23
0 commit comments