@@ -74,19 +74,19 @@ message AccountStatusInPartition {
74
74
}
75
75
76
76
message QueryAccountBlockStatusResponse {
77
- // In versions 1.6 .0 and earlier:
77
+ // In versions 1.7 .0 and earlier:
78
78
// - The account's status is uniformly consistent across all partitions by default.
79
79
// - false: The queried account is unblocked in all partitions.
80
80
// - true: The queried account has no available partitions.
81
81
82
- // In versions later than 1.6 .0:
82
+ // In versions later than 1.7 .0:
83
83
// - The field "blocked" represents whether the account is completely blocked across all partitions:
84
84
// - true: The account is fully blocked in all partitions.
85
85
// - false: The account has one or more partitions where it is not blocked.
86
86
bool blocked = 1 ;
87
87
88
88
// the details of account blocked status in every partition
89
- // only returns in version later than 1.6 .0
89
+ // only returns in version later than 1.7 .0
90
90
repeated AccountStatusInPartition account_blocked_details = 2 ;
91
91
}
92
92
@@ -213,10 +213,10 @@ service AccountService {
213
213
/*
214
214
* description: query if an account is blocked
215
215
* Version differences:
216
- * - In versions 1.6 .0 and earlier:
216
+ * - In versions 1.7 .0 and earlier:
217
217
* - The response's 'blocked' field indicates a uniform status across all partitions.
218
218
* - The 'account_blocked_details' field is not returned.
219
- * - In versions after 1.6 .0:
219
+ * - In versions after 1.7 .0:
220
220
* - The 'blocked' field indicates whether the account is completely blocked across all partitions.
221
221
* - The 'account_blocked_details' field provides detailed status information for each partition.
222
222
* errors:
0 commit comments