diff --git a/tools/test-framework/src/relayer/chain.rs b/tools/test-framework/src/relayer/chain.rs index 68f1a74bf1..1c750fc681 100644 --- a/tools/test-framework/src/relayer/chain.rs +++ b/tools/test-framework/src/relayer/chain.rs @@ -362,7 +362,7 @@ where &self, request: QueryPacketCommitmentRequest, include_proof: IncludeProof, - ) -> Result<(Vec, Option), Error> { + ) -> Result<(Vec, Option<(MerkleProof, Height)>), Error> { self.value().query_packet_commitment(request, include_proof) } @@ -377,7 +377,7 @@ where &self, request: QueryPacketReceiptRequest, include_proof: IncludeProof, - ) -> Result<(Vec, Option), Error> { + ) -> Result<(Vec, Option<(MerkleProof, Height)>), Error> { self.value().query_packet_receipt(request, include_proof) } @@ -392,7 +392,7 @@ where &self, request: QueryPacketAcknowledgementRequest, include_proof: IncludeProof, - ) -> Result<(Vec, Option), Error> { + ) -> Result<(Vec, Option<(MerkleProof, Height)>), Error> { self.value() .query_packet_acknowledgement(request, include_proof) }