Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
Fix signature (#398)
Browse files Browse the repository at this point in the history
* Fix signature

* Bump
  • Loading branch information
Wgil authored Jun 20, 2024
1 parent d300d5a commit 244e1c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.8
0.2.9
6 changes: 3 additions & 3 deletions bindings/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ pub enum ElysMsg {

LeveragelpClaimRewards {
sender: String,
id: Vec<u64>,
ids: Vec<u64>,
},
}

Expand Down Expand Up @@ -376,8 +376,8 @@ impl ElysMsg {
pub fn tier_set_portfolio(creator: String, user: String) -> Self {
Self::TierSetPortfolio { creator, user }
}
pub fn leveragelp_withdraw_reward(sender: String, id: Vec<u64>) -> Self {
Self::LeveragelpClaimRewards { sender, id }
pub fn leveragelp_withdraw_reward(sender: String, ids: Vec<u64>) -> Self {
Self::LeveragelpClaimRewards { sender, ids }
}

pub fn estaking_withdraw_reward(delegator_address: String, validator_address: String) -> Self {
Expand Down

0 comments on commit 244e1c6

Please sign in to comment.