fix: remove class CancelUnbond not used

This commit is contained in:
Tuan Phan Anh 2024-05-18 20:48:45 +07:00 committed by GitHub
parent 81fb27c40c
commit 4ff0a5e9b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 10 deletions

View File

@ -24,7 +24,6 @@ import {
GasPrice, GasPrice,
isDeliverTxFailure, isDeliverTxFailure,
logs, logs,
MsgCancelUnbondingDelegationEncodeObject,
MsgDelegateEncodeObject, MsgDelegateEncodeObject,
MsgSendEncodeObject, MsgSendEncodeObject,
MsgUndelegateEncodeObject, MsgUndelegateEncodeObject,
@ -35,11 +34,7 @@ import {
import { CometClient, connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc"; import { CometClient, connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc";
import { assert, assertDefined } from "@cosmjs/utils"; import { assert, assertDefined } from "@cosmjs/utils";
import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx"; import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx";
import { import { MsgDelegate, MsgUndelegate } from "cosmjs-types/cosmos/staking/v1beta1/tx";
MsgCancelUnbondingDelegation,
MsgDelegate,
MsgUndelegate,
} from "cosmjs-types/cosmos/staking/v1beta1/tx";
import { SignMode } from "cosmjs-types/cosmos/tx/signing/v1beta1/signing"; import { SignMode } from "cosmjs-types/cosmos/tx/signing/v1beta1/signing";
import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx"; import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx";
import { import {

View File

@ -16,10 +16,7 @@ import { CometClient, connectComet, HttpEndpoint } from "@cosmjs/tendermint-rpc"
import { assert, assertDefined } from "@cosmjs/utils"; import { assert, assertDefined } from "@cosmjs/utils";
import { Coin } from "cosmjs-types/cosmos/base/v1beta1/coin"; import { Coin } from "cosmjs-types/cosmos/base/v1beta1/coin";
import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx"; import { MsgWithdrawDelegatorReward } from "cosmjs-types/cosmos/distribution/v1beta1/tx";
import { import { MsgDelegate, MsgUndelegate } from "cosmjs-types/cosmos/staking/v1beta1/tx";
MsgDelegate,
MsgUndelegate,
} from "cosmjs-types/cosmos/staking/v1beta1/tx";
import { SignMode } from "cosmjs-types/cosmos/tx/signing/v1beta1/signing"; import { SignMode } from "cosmjs-types/cosmos/tx/signing/v1beta1/signing";
import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx"; import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx";
import { MsgTransfer } from "cosmjs-types/ibc/applications/transfer/v1/tx"; import { MsgTransfer } from "cosmjs-types/ibc/applications/transfer/v1/tx";