Skip to content

Commit

Permalink
fix: incorrect recv packet query tag
Browse files Browse the repository at this point in the history
Signed-off-by: Till Ziegler <[email protected]>
  • Loading branch information
fragwuerdig committed Nov 8, 2024
1 parent e1e5bc2 commit 29b3e5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chains/tendermint/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ func sendPacketQuery(channelID string, seq int) []string {
}

func recvPacketQuery(channelID string, seq int) []string {
return []string{fmt.Sprintf("%s.packet_src_channel='%s'", rpTag, channelID), fmt.Sprintf("%s.packet_sequence='%d'", rpTag, seq)}
return []string{fmt.Sprintf("%s.packet_dst_channel='%s'", rpTag, channelID), fmt.Sprintf("%s.packet_sequence='%d'", rpTag, seq)}
}

func writeAckQuery(channelID string, seq int) []string {
Expand Down

0 comments on commit 29b3e5f

Please sign in to comment.