Skip to content

Commit

Permalink
chore: alignment on unstake
Browse files Browse the repository at this point in the history
chore: alignment on unstake
  • Loading branch information
dzmitry-lahoda authored Dec 20, 2023
1 parent 2e987a4 commit 41bef31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/fee-distribution/staking/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@ pub fn execute(
msg: ExecuteMsg,
) -> Result<Response, ContractError> {
match msg {
// handle CW20 hook with assets with ExecuteMsg::Unstake inside => handle_unstake(deps, env, info, submsg),
ExecuteMsg::UpdateConfig {
tokens_per_interval,
} => handle_update_config(deps, info, tokens_per_interval),
ExecuteMsg::UpdateRewards {} => handle_update_rewards(deps, env),
ExecuteMsg::Stake {} => handle_stake(deps, env, info),
ExecuteMsg::Receive(msg) => receive_cw20(deps, env, info, msg),
// ExecuteMsg::Unstake {} => handle_unstake(deps, env, info),
ExecuteMsg::Claim {
recipient,
} => handle_claim(deps, env, info, recipient),
Expand Down

0 comments on commit 41bef31

Please sign in to comment.