@@ -33,9 +33,9 @@ service Msg {
33
33
rpc CancelSwapIn (MsgCancelSwapIn ) returns (MsgCancelSwapInResponse );
34
34
rpc CompleteSwapIn (MsgCompleteSwapIn ) returns (MsgCompleteSwapInResponse );
35
35
36
- // StorageProviderForceExit defines a governance operation for a SP force exit
36
+ // StorageProviderForcedExit defines a governance operation for a SP to be forced to exit
37
37
// The authority is defined in the keeper.
38
- rpc StorageProviderForceExit ( MsgStorageProviderForceExit ) returns (MsgStorageProviderForceExitResponse );
38
+ rpc StorageProviderForcedExit ( MsgStorageProviderForcedExit ) returns (MsgStorageProviderForcedExitResponse );
39
39
}
40
40
41
41
// MsgUpdateParams is the Msg/UpdateParams request type.
@@ -192,7 +192,7 @@ message MsgCompleteStorageProviderExit {
192
192
// storage_provider defines the operator account address of the storage provider who will exit
193
193
string storage_provider = 1 [(cosmos_proto.scalar ) = "cosmos.AddressString" ];
194
194
195
- // operator defines the operator account address of the storage provider who initials this transaction.
195
+ // operator defines the operator account address who initials this transaction.
196
196
string operator = 2 [(cosmos_proto.scalar ) = "cosmos.AddressString" ];
197
197
}
198
198
@@ -210,7 +210,7 @@ message MsgReserveSwapIn {
210
210
// it it set to zero, it represents that the operator swap in as the secondary storage provider.
211
211
uint32 global_virtual_group_family_id = 3 ;
212
212
// global_virtual_group_id is a global virtual group ID associated with the swap in.
213
- // It allows to be empty only when the operator is the primary storage provider.
213
+ // It allows to be empty only when the operator wants to be the successor primary storage provider in a family .
214
214
uint32 global_virtual_group_id = 4 ;
215
215
}
216
216
@@ -219,14 +219,14 @@ message MsgReserveSwapInResponse {}
219
219
message MsgCompleteSwapIn {
220
220
option (cosmos.msg.v1.signer ) = "storage_provider" ;
221
221
222
- // storage_provider defines the operator account address of the storage provider who want to swap into the virtual group family or global virtual group.
222
+ // storage_provider defines the operator account address of the storage provider who wants to swap into the virtual group family or global virtual group.
223
223
string storage_provider = 1 [(cosmos_proto.scalar ) = "cosmos.AddressString" ];
224
224
// virtual_group_family_id is the identifier of the virtual group family.
225
225
// if it set to non-zero, it represents that the operator swap in as the primary storage provider
226
226
// it it set to zero, it represents that the operator swap in as the secondary storage provider.
227
227
uint32 global_virtual_group_family_id = 2 ;
228
228
// global_virtual_group_id is a global virtual group ID associated with the swap in.
229
- // It allows to be empty only when the operator is the primary storage provider.
229
+ // It allows to be empty only when the operator wants to be the successor primary storage provider in a family .
230
230
uint32 global_virtual_group_id = 3 ;
231
231
}
232
232
@@ -242,21 +242,21 @@ message MsgCancelSwapIn {
242
242
// it it set to zero, it represents that the operator swap in as the secondary storage provider.
243
243
uint32 global_virtual_group_family_id = 2 ;
244
244
// global_virtual_group_id is a global virtual group IDs associated with the swap in.
245
- // It allows to be empty only when the operator is the primary storage provider.
245
+ // It allows to be empty only when the operator wants to be the successor primary storage provider in a family .
246
246
uint32 global_virtual_group_id = 3 ;
247
247
}
248
248
249
249
message MsgCancelSwapInResponse {}
250
250
251
251
// this line is used by starport scaffolding # proto/tx/message
252
- message MsgStorageProviderForceExit {
252
+ message MsgStorageProviderForcedExit {
253
253
option (cosmos.msg.v1.signer ) = "authority" ;
254
254
255
255
// authority is the address that controls the module (defaults to x/gov unless overwritten).
256
256
string authority = 1 [(cosmos_proto.scalar ) = "cosmos.AddressString" ];
257
257
258
- // storage_provider defines the account address of the storage provider which need to force exit
258
+ // storage_provider defines the account address of the storage provider forced to exit
259
259
string storage_provider = 2 [(cosmos_proto.scalar ) = "cosmos.AddressString" ];
260
260
}
261
261
262
- message MsgStorageProviderForceExitResponse {}
262
+ message MsgStorageProviderForcedExitResponse {}
0 commit comments