Skip to content

Commit d8d4889

Browse files
committed
Regenerate schema
1 parent 39db5f7 commit d8d4889

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

contracts/ibc2/schema/ibc2.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,18 @@
3737
"title": "State",
3838
"type": "object",
3939
"required": [
40+
"ibc2_packet_ack_counter",
4041
"ibc2_packet_receive_counter",
4142
"ibc2_packet_timeout_counter",
4243
"last_packet_seq",
4344
"last_source_client"
4445
],
4546
"properties": {
47+
"ibc2_packet_ack_counter": {
48+
"type": "integer",
49+
"format": "uint32",
50+
"minimum": 0.0
51+
},
4652
"ibc2_packet_receive_counter": {
4753
"type": "integer",
4854
"format": "uint32",

contracts/ibc2/schema/raw/response_to_query_state.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@
33
"title": "State",
44
"type": "object",
55
"required": [
6+
"ibc2_packet_ack_counter",
67
"ibc2_packet_receive_counter",
78
"ibc2_packet_timeout_counter",
89
"last_packet_seq",
910
"last_source_client"
1011
],
1112
"properties": {
13+
"ibc2_packet_ack_counter": {
14+
"type": "integer",
15+
"format": "uint32",
16+
"minimum": 0.0
17+
},
1218
"ibc2_packet_receive_counter": {
1319
"type": "integer",
1420
"format": "uint32",

packages/std/src/exports/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub use exports::{
1010
do_query, do_reply, do_sudo,
1111
};
1212
#[cfg(feature = "ibc2")]
13-
pub use exports::{do_ibc2_packet_receive, do_ibc2_packet_timeout, do_ibc2_packet_ack};
13+
pub use exports::{do_ibc2_packet_ack, do_ibc2_packet_receive, do_ibc2_packet_timeout};
1414
#[cfg(feature = "stargate")]
1515
pub use exports::{
1616
do_ibc_channel_close, do_ibc_channel_connect, do_ibc_channel_open, do_ibc_packet_ack,

0 commit comments

Comments
 (0)