Skip to content

Commit

Permalink
remove redeem deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
puneet2019 committed Dec 17, 2024
1 parent 01f68cc commit 05e2d88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
### Improvements

- [855](https://github.com/persistenceOne/pstake-native/pull/855) Add condition for not allowing zero delegation unbondings icq
- [900](https://github.com/persistenceOne/pstake-native/pull/900) Add feature to deprecate liquidstakeibc

## [v2.15.0] - 2024-05-30

Expand Down
15 changes: 1 addition & 14 deletions proto/pstake/liquidstakeibc/v1beta1/msgs.proto
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ service Msg {
rpc Redeem(MsgRedeem) returns (MsgRedeemResponse) {
option (google.api.http).post = "/pstake/liquidstakeibc/v1beta1/Redeem";
}
rpc RedeemDeprecated(MsgRedeemDeprecated) returns (MsgRedeemDeprecatedResponse) {
option (google.api.http).post = "/pstake/liquidstakeibc/v1beta1/RedeemDeprecated";
}

rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse);
}

Expand Down Expand Up @@ -161,14 +159,3 @@ message MsgUpdateParams {
}

message MsgUpdateParamsResponse {}

message MsgRedeemDeprecated {
option (cosmos.msg.v1.signer) = "delegator_address";
option (amino.name) = "pstake/MsgRedeemDepracated";

string delegator_address = 1
[ (cosmos_proto.scalar) = "cosmos.AddressString" ];
cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.nullable) = false ];
}

message MsgRedeemDeprecatedResponse {}

0 comments on commit 05e2d88

Please sign in to comment.