Skip to content

Commit

Permalink
fix tools build
Browse files Browse the repository at this point in the history
  • Loading branch information
noot committed Nov 1, 2024
1 parent 19d6eaf commit 058f8e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/test-framework/src/relayer/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ where
&self,
request: QueryPacketCommitmentRequest,
include_proof: IncludeProof,
) -> Result<(Vec<u8>, Option<MerkleProof>), Error> {
) -> Result<(Vec<u8>, Option<(MerkleProof, Height)>), Error> {
self.value().query_packet_commitment(request, include_proof)
}

Expand All @@ -377,7 +377,7 @@ where
&self,
request: QueryPacketReceiptRequest,
include_proof: IncludeProof,
) -> Result<(Vec<u8>, Option<MerkleProof>), Error> {
) -> Result<(Vec<u8>, Option<(MerkleProof, Height)>), Error> {
self.value().query_packet_receipt(request, include_proof)
}

Expand All @@ -392,7 +392,7 @@ where
&self,
request: QueryPacketAcknowledgementRequest,
include_proof: IncludeProof,
) -> Result<(Vec<u8>, Option<MerkleProof>), Error> {
) -> Result<(Vec<u8>, Option<(MerkleProof, Height)>), Error> {
self.value()
.query_packet_acknowledgement(request, include_proof)
}
Expand Down

0 comments on commit 058f8e1

Please sign in to comment.