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
@@ -1175,8 +1175,8 @@ pub fn app<'a, 'b>(
1175
1175
. takes_value ( true )
1176
1176
. index ( 2 )
1177
1177
. required ( true )
1178
- . min_values ( MIN_SIGNERS as u64 )
1179
- . max_values ( MAX_SIGNERS as u64 )
1178
+ . min_values ( MIN_SIGNERS )
1179
+ . max_values ( MAX_SIGNERS )
1180
1180
. help ( multisig_member_help) ,
1181
1181
)
1182
1182
. arg (
@@ -1365,7 +1365,7 @@ pub fn app<'a, 'b>(
1365
1365
. value_name ( "PUBKEY:ROLE" )
1366
1366
. takes_value ( true )
1367
1367
. multiple ( true )
1368
- . min_values ( 0u64 )
1368
+ . min_values ( 0_usize )
1369
1369
. help ( "Additional pubkey(s) required for a transfer hook and their \
1370
1370
role, in the format \" <PUBKEY>:<ROLE>\" . The role must be \
1371
1371
\" readonly\" , \" writable\" . \" readonly-signer\" , or \" writable-signer\" .\
@@ -2204,7 +2204,7 @@ pub fn app<'a, 'b>(
2204
2204
. value_name ( "ACCOUNT_ADDRESS" )
2205
2205
. takes_value ( true )
2206
2206
. multiple ( true )
2207
- . min_values ( 0u64 )
2207
+ . min_values ( 0_usize )
2208
2208
. help ( "The token accounts to withdraw from" )
2209
2209
)
2210
2210
. arg (
You can’t perform that action at this time.
0 commit comments