Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Feb 3, 2025
1 parent cc9e4a9 commit 4a4172f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
13 changes: 12 additions & 1 deletion contracts/ibc-callbacks/schema/ibc-callbacks.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@
},
"channel_version": {
"description": "IBC channel version",
"type": "string"
"allOf": [
{
"$ref": "#/definitions/ChannelVersion"
}
]
},
"timeout_seconds": {
"description": "The amount of seconds from now the transfer should timeout at",
Expand Down Expand Up @@ -87,6 +91,13 @@
]
}
]
},
"ChannelVersion": {
"type": "string",
"enum": [
"v1",
"v2"
]
}
}
},
Expand Down
13 changes: 12 additions & 1 deletion contracts/ibc-callbacks/schema/raw/execute.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
},
"channel_version": {
"description": "IBC channel version",
"type": "string"
"allOf": [
{
"$ref": "#/definitions/ChannelVersion"
}
]
},
"timeout_seconds": {
"description": "The amount of seconds from now the transfer should timeout at",
Expand Down Expand Up @@ -76,6 +80,13 @@
]
}
]
},
"ChannelVersion": {
"type": "string",
"enum": [
"v1",
"v2"
]
}
}
}

0 comments on commit 4a4172f

Please sign in to comment.