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

fix: unlock incentives so people can withdraw before the unlocking time finishes #221

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "incentive"
version = "1.0.3"
version = "1.0.4"
authors = ["kaimen-sano <[email protected]>"]
edition.workspace = true
description = "An incentive manager for an LP token"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ pub fn withdraw(deps: DepsMut, env: Env, info: MessageInfo) -> Result<Response,
let position = &closed_positions[i];

// if unbonding timestamp is in the past, it's possible to withdraw
if env.block.time.seconds() > position.unbonding_timestamp {
// add return tokens to sum
return_token_count = return_token_count.checked_add(position.amount)?;

// remove position
closed_positions.remove(i);
}
// let people out of jail in this version, done for specific pools where liquidity is being transferred
//if env.block.time.seconds() > position.unbonding_timestamp {
// add return tokens to sum
return_token_count = return_token_count.checked_add(position.amount)?;

// remove position
closed_positions.remove(i);
//}
}

Ok(closed_positions)
Expand Down
Loading