From c627405111df3261face70d1785325c7ac7b88b2 Mon Sep 17 00:00:00 2001 From: toofooboo Date: Fri, 20 Dec 2024 15:17:22 +0800 Subject: [PATCH] chore: fix some method names in interface comment Signed-off-by: toofooboo --- core/chain.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/chain.go b/core/chain.go index 684b4fcf..4171d086 100644 --- a/core/chain.go +++ b/core/chain.go @@ -147,13 +147,13 @@ type ICS04Querier interface { // QueryUnreceivedPackets returns a list of unrelayed packet commitments QueryUnreceivedPackets(ctx QueryContext, seqs []uint64) ([]uint64, error) - // QueryUnfinalizedRelayedPackets returns packets and heights that are sent but not received at the latest finalized block on the counterparty chain + // QueryUnfinalizedRelayPackets returns packets and heights that are sent but not received at the latest finalized block on the counterparty chain QueryUnfinalizedRelayPackets(ctx QueryContext, counterparty LightClientICS04Querier) (PacketInfoList, error) // QueryUnreceivedAcknowledgements returns a list of unrelayed packet acks QueryUnreceivedAcknowledgements(ctx QueryContext, seqs []uint64) ([]uint64, error) - // QueryUnfinalizedRelayedAcknowledgements returns acks and heights that are sent but not received at the latest finalized block on the counterpartychain + // QueryUnfinalizedRelayAcknowledgements returns acks and heights that are sent but not received at the latest finalized block on the counterpartychain QueryUnfinalizedRelayAcknowledgements(ctx QueryContext, counterparty LightClientICS04Querier) (PacketInfoList, error) // QueryChannelUpgrade returns the channel upgrade associated with a channelID