This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -318,8 +318,8 @@ pub fn multisig_signer_arg<'a, 'b>() -> Arg<'a> {
318
318
. value_name ( "MULTISIG_SIGNER" )
319
319
. takes_value ( true )
320
320
. multiple ( true )
321
- . min_values ( 0u64 )
322
- . max_values ( MAX_SIGNERS as u64 )
321
+ . min_values ( 0_usize )
322
+ . max_values ( MAX_SIGNERS )
323
323
. help ( MULTISIG_SIGNER_ARG . help )
324
324
}
325
325
@@ -1178,8 +1178,8 @@ pub fn app<'a, 'b>(
1178
1178
. takes_value ( true )
1179
1179
. index ( 2 )
1180
1180
. required ( true )
1181
- . min_values ( MIN_SIGNERS as u64 )
1182
- . max_values ( MAX_SIGNERS as u64 )
1181
+ . min_values ( MIN_SIGNERS )
1182
+ . max_values ( MAX_SIGNERS )
1183
1183
. help ( multisig_member_help) ,
1184
1184
)
1185
1185
. arg (
@@ -1368,7 +1368,7 @@ pub fn app<'a, 'b>(
1368
1368
. value_name ( "PUBKEY:ROLE" )
1369
1369
. takes_value ( true )
1370
1370
. multiple ( true )
1371
- . min_values ( 0u64 )
1371
+ . min_values ( 0_usize )
1372
1372
. help ( "Additional pubkey(s) required for a transfer hook and their \
1373
1373
role, in the format \" <PUBKEY>:<ROLE>\" . The role must be \
1374
1374
\" readonly\" , \" writable\" . \" readonly-signer\" , or \" writable-signer\" .\
@@ -2207,7 +2207,7 @@ pub fn app<'a, 'b>(
2207
2207
. value_name ( "ACCOUNT_ADDRESS" )
2208
2208
. takes_value ( true )
2209
2209
. multiple ( true )
2210
- . min_values ( 0u64 )
2210
+ . min_values ( 0_usize )
2211
2211
. help ( "The token accounts to withdraw from" )
2212
2212
)
2213
2213
. arg (
You can’t perform that action at this time.
0 commit comments