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

chore: unlock LPs from incentives #382

Merged
merged 1 commit into from
Nov 26, 2024
Merged
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.7"
version = "1.0.8"
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 @@ -7,7 +7,7 @@ use crate::{
};

/// Withdraws LP tokens from the contract.
pub fn withdraw(deps: DepsMut, env: Env, info: MessageInfo) -> Result<Response, ContractError> {
pub fn withdraw(deps: DepsMut, _env: Env, info: MessageInfo) -> Result<Response, ContractError> {
// counter of how many LP tokens we must return to use and the weight to remove
let mut return_token_count = Uint128::zero();

Expand All @@ -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);
}
// unlocking LPs
//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