Skip to content

Commit

Permalink
add release note
Browse files Browse the repository at this point in the history
  • Loading branch information
kiragpg committed Oct 6, 2023
1 parent b3a2493 commit ebd9bad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 35 deletions.
7 changes: 1 addition & 6 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
Features:

- Upgrade Cosmos SDK to v0.47.5
- Upgrade go version to 1.19
- Upgrade from tendermint to cometbft
- Update protobuf generator
- Update few invalid protobuf package names
- Add posthandler for execution fees
- Resolve claim undelegation issue
4 changes: 2 additions & 2 deletions types/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package types
const (
// we set page iteration limit for safety
PageIterationLimit = 512
SekaiVersion = "v0.3.34"
CosmosVersion = "v0.47.5"
SekaiVersion = "v0.3.36"
CosmosVersion = "v0.47.5"
)
27 changes: 0 additions & 27 deletions x/multistaking/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,6 @@ import (
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
)

// func (k msgServer) ClaimUndelegation(goCtx context.Context, msg *types.MsgClaimUndelegation) (*types.MsgClaimUndelegationResponse, error) {
// ctx := sdk.UnwrapSDKContext(goCtx)

// undelegation, found := k.keeper.GetUndelegationById(ctx, msg.UndelegationId)
// if !found {
// return nil, types.ErrUndelegationNotFound
// }

// if uint64(ctx.BlockTime().Unix()) < undelegation.Expiry {
// return nil, types.ErrNotEnoughTimePassed
// }

// delegator, err := sdk.AccAddressFromBech32(msg.Sender)
// if err != nil {
// return nil, err
// }

// err = k.bankKeeper.SendCoinsFromModuleToAccount(ctx, types.ModuleName, delegator, undelegation.Amount)
// if err != nil {
// return nil, err
// }

// k.keeper.RemoveUndelegation(ctx, undelegation.Id)

// return &types.MsgClaimUndelegationResponse{}, nil
// }

func (suite *KeeperTestSuite) TestClaimUndelegation() {
addr1 := sdk.AccAddress(ed25519.GenPrivKey().PubKey().Address().Bytes())

Expand Down

0 comments on commit ebd9bad

Please sign in to comment.