Skip to content

Commit

Permalink
Merge pull request #149 from Vsc-blockchain/frag/incorrect-recv-query2
Browse files Browse the repository at this point in the history
fix: incorrect recv packet query string
  • Loading branch information
siburu authored Nov 12, 2024
2 parents e1e5bc2 + 29b3e5f commit c30d155
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 c30d155

Please sign in to comment.