Skip to content

Commit

Permalink
Fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Apr 16, 2024
1 parent 2ea0c1f commit 35d1592
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/ibc-callbacks/schema/ibc-callbacks.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/std/src/ibc/callbacks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Check warning on line 144 in packages/std/src/ibc/callbacks.rs

View check run for this annotation

Codecov / codecov/patch

packages/std/src/ibc/callbacks.rs#L144

Added line #L144 was not covered by tests
pub struct IbcFullAcknowledgement {
/// The acknowledgement data returned by the module.
Expand Down

0 comments on commit 35d1592

Please sign in to comment.