From edcc680ac60bc2999e8d91d0f3e3c603419cb659 Mon Sep 17 00:00:00 2001 From: Yaru Wang Date: Thu, 20 Jul 2023 12:20:32 +0200 Subject: [PATCH] chore: remove extra comment --- x/ccv/provider/keeper/keeper.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/x/ccv/provider/keeper/keeper.go b/x/ccv/provider/keeper/keeper.go index 68f40660cd..b332ead93e 100644 --- a/x/ccv/provider/keeper/keeper.go +++ b/x/ccv/provider/keeper/keeper.go @@ -722,8 +722,6 @@ func (k Keeper) DeleteValsetUpdateBlockHeight(ctx sdk.Context, valsetUpdateId ui } // SetSlashAcks sets the slash acks under the given chain ID -// -// See https://github.com/cosmos/interchain-security/issues/728 func (k Keeper) SetSlashAcks(ctx sdk.Context, chainID string, acks []string) { store := ctx.KVStore(k.storeKey) @@ -740,8 +738,6 @@ func (k Keeper) SetSlashAcks(ctx sdk.Context, chainID string, acks []string) { } // GetSlashAcks returns the slash acks stored under the given chain ID -// -// See https://github.com/cosmos/interchain-security/issues/728 func (k Keeper) GetSlashAcks(ctx sdk.Context, chainID string) []string { store := ctx.KVStore(k.storeKey) bz := store.Get(types.SlashAcksKey(chainID))