From 35d1592bc801d543953234b3a1eb40cdd36beddf Mon Sep 17 00:00:00 2001 From: Christoph Otter Date: Tue, 16 Apr 2024 14:14:55 +0200 Subject: [PATCH] Fix link --- contracts/ibc-callbacks/schema/ibc-callbacks.json | 2 +- .../ibc-callbacks/schema/raw/response_to_callback_stats.json | 2 +- packages/std/src/ibc/callbacks.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/ibc-callbacks/schema/ibc-callbacks.json b/contracts/ibc-callbacks/schema/ibc-callbacks.json index 1916115d15..9955f8a82a 100644 --- a/contracts/ibc-callbacks/schema/ibc-callbacks.json +++ b/contracts/ibc-callbacks/schema/ibc-callbacks.json @@ -187,7 +187,7 @@ "additionalProperties": false }, "IbcFullAcknowledgement": { - "description": "The acknowledgement written by the module on the destination chain. It is different from the [`IbcAcknowledgement`] as it can be unsuccessful.", + "description": "The acknowledgement written by the module on the destination chain. It is different from the [`crate::IbcAcknowledgement`] as it can be unsuccessful.", "type": "object", "required": [ "data", diff --git a/contracts/ibc-callbacks/schema/raw/response_to_callback_stats.json b/contracts/ibc-callbacks/schema/raw/response_to_callback_stats.json index e1ed218865..a57f65fb7e 100644 --- a/contracts/ibc-callbacks/schema/raw/response_to_callback_stats.json +++ b/contracts/ibc-callbacks/schema/raw/response_to_callback_stats.json @@ -84,7 +84,7 @@ "additionalProperties": false }, "IbcFullAcknowledgement": { - "description": "The acknowledgement written by the module on the destination chain. It is different from the [`IbcAcknowledgement`] as it can be unsuccessful.", + "description": "The acknowledgement written by the module on the destination chain. It is different from the [`crate::IbcAcknowledgement`] as it can be unsuccessful.", "type": "object", "required": [ "data", diff --git a/packages/std/src/ibc/callbacks.rs b/packages/std/src/ibc/callbacks.rs index 52383b8d43..1243e9a9d9 100644 --- a/packages/std/src/ibc/callbacks.rs +++ b/packages/std/src/ibc/callbacks.rs @@ -140,7 +140,7 @@ pub struct IbcDestinationChainCallbackMsg { } /// The acknowledgement written by the module on the destination chain. -/// It is different from the [`IbcAcknowledgement`] as it can be unsuccessful. +/// It is different from the [`crate::IbcAcknowledgement`] as it can be unsuccessful. #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)] pub struct IbcFullAcknowledgement { /// The acknowledgement data returned by the module.