From 6029be0f27f8382c0bdaede9a666c99209978561 Mon Sep 17 00:00:00 2001 From: Dev Ojha Date: Wed, 1 May 2024 15:38:22 -0700 Subject: [PATCH] Update comment --- modules/core/keeper/msg_server.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/core/keeper/msg_server.go b/modules/core/keeper/msg_server.go index 2c43dd11944..db761566303 100644 --- a/modules/core/keeper/msg_server.go +++ b/modules/core/keeper/msg_server.go @@ -551,6 +551,8 @@ func (k *Keeper) RecvPacketCheckNonRedundant(goCtx context.Context, msg *channel // Use a cached context to prevent accidental state changes cacheCtx, writeFn := ctx.CacheContext() // TODO: Update RecvPacket to skip MT inclusion checks on Recheck. + // Its slightly involved because right now every client is responsible for checking that the + // height exists on the client, rather than the channel keeper. err = k.ChannelKeeper.RecvPacket(cacheCtx, capability, msg.Packet, msg.ProofCommitment, msg.ProofHeight) switch err {