Skip to content

Commit 3685c8f

Browse files
committed
adjust proto field order
1 parent 6a5f916 commit 3685c8f

File tree

7 files changed

+1070
-1071
lines changed

7 files changed

+1070
-1071
lines changed

api/side/btcbridge/params.pulsar.go

Lines changed: 608 additions & 608 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/side/tss/query.pulsar.go

Lines changed: 63 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/side/btcbridge/params.proto

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ message Params {
7373
ProtocolFees protocol_fees = 13 [(gogoproto.nullable) = false];
7474
// TSS params
7575
TSSParams tss_params = 14 [(gogoproto.nullable) = false];
76-
// IBC params
77-
IBCParams ibc_params = 15 [(gogoproto.nullable) = false];
7876
// Rate limit params
79-
RateLimitParams rate_limit_params = 16 [(gogoproto.nullable) = false];
77+
RateLimitParams rate_limit_params = 15 [(gogoproto.nullable) = false];
78+
// IBC params
79+
IBCParams ibc_params = 16 [(gogoproto.nullable) = false];
8080
// Fee sponsorship params
8181
FeeSponsorshipParams fee_sponsorship_params = 17 [(gogoproto.nullable) = false];
8282
}
@@ -134,6 +134,14 @@ message ProtocolFees {
134134
string collector = 3;
135135
}
136136

137+
// TSSParams defines the params related to TSS
138+
message TSSParams {
139+
// Timeout duration for DKG request
140+
google.protobuf.Duration dkg_timeout_period = 1 [(gogoproto.nullable) = false, (gogoproto.stdduration) = true];
141+
// Transition period after which TSS participants update process is completed
142+
google.protobuf.Duration participant_update_transition_period = 2 [(gogoproto.nullable) = false, (gogoproto.stdduration) = true];
143+
}
144+
137145
// RateLimitParams defines the params related to the rate limit for BTC withdrawal
138146
message RateLimitParams {
139147
// Global rate limit params
@@ -158,14 +166,6 @@ message AddressRateLimitParams {
158166
int64 quota = 2;
159167
}
160168

161-
// TSSParams defines the params related to TSS
162-
message TSSParams {
163-
// Timeout duration for DKG request
164-
google.protobuf.Duration dkg_timeout_period = 1 [(gogoproto.nullable) = false, (gogoproto.stdduration) = true];
165-
// Transition period after which TSS participants update process is completed
166-
google.protobuf.Duration participant_update_transition_period = 2 [(gogoproto.nullable) = false, (gogoproto.stdduration) = true];
167-
}
168-
169169
// IBCParams defines the params related to IBC
170170
message IBCParams {
171171
// Timeout height offset relative to the current client height

proto/side/tss/query.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ message QuerySigningRequestResponse {
9595
}
9696

9797
message QuerySigningRequestsRequest {
98-
string module = 1;
99-
SigningStatus status = 2;
98+
SigningStatus status = 1;
99+
string module = 2;
100100
cosmos.base.query.v1beta1.PageRequest pagination = 3;
101101
}
102102

0 commit comments

Comments
 (0)