diff --git a/module/x/gravity/keeper/batch.go b/module/x/gravity/keeper/batch.go index 32ce26fe3..d726900c1 100644 --- a/module/x/gravity/keeper/batch.go +++ b/module/x/gravity/keeper/batch.go @@ -125,11 +125,6 @@ func (k Keeper) GetBatchFeesByTokenType(ctx sdk.Context, tokenContractAddr commo // CancelBatchTx releases all TX in the batch and deletes the batch func (k Keeper) CancelBatchTx(ctx sdk.Context, batch *types.BatchTx) { - // If it's not in the store, it's already been completed, so we don't need to cancel it - if k.GetOutgoingTx(ctx, batch.GetStoreIndex()) == nil { - return - } - // free transactions from batch and reindex them for _, tx := range batch.Transactions { k.setUnbatchedSendToEthereum(ctx, tx)