Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Global delayed insurance withdrawal #246

Open
wants to merge 3 commits into
base: contracts-v2
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: Natspec comments
OsmanBran committed Nov 3, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit e95da0a5bded06e32dc6680991e8934603967727
4 changes: 4 additions & 0 deletions contracts/Insurance.sol
Original file line number Diff line number Diff line change
@@ -90,6 +90,10 @@ contract Insurance is IInsurance {
emit Cooldown(msg.sender, block.timestamp);
}

/**
* @notice Resets the cooldown period of a user
* @dev User must have called intendToWithdraw first
*/
function cancelWithdraw() external {
require(withdrawCooldown[msg.sender] != 0, "INS: Not withdrawing");
withdrawCooldown[msg.sender] = 0;