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
@@ -1218,8 +1218,8 @@ pub fn app<'a, 'b>(
1218
1218
. takes_value ( true )
1219
1219
. index ( 2 )
1220
1220
. required ( true )
1221
- . min_values ( MIN_SIGNERS as u64 )
1222
- . max_values ( MAX_SIGNERS as u64 )
1221
+ . min_values ( MIN_SIGNERS )
1222
+ . max_values ( MAX_SIGNERS )
1223
1223
. help ( multisig_member_help) ,
1224
1224
)
1225
1225
. arg (
@@ -1408,7 +1408,7 @@ pub fn app<'a, 'b>(
1408
1408
. value_name ( "PUBKEY:ROLE" )
1409
1409
. takes_value ( true )
1410
1410
. multiple ( true )
1411
- . min_values ( 0u64 )
1411
+ . min_values ( 0_usize )
1412
1412
. help ( "Additional pubkey(s) required for a transfer hook and their \
1413
1413
role, in the format \" <PUBKEY>:<ROLE>\" . The role must be \
1414
1414
\" readonly\" , \" writable\" . \" readonly-signer\" , or \" writable-signer\" .\
@@ -2247,7 +2247,7 @@ pub fn app<'a, 'b>(
2247
2247
. value_name ( "ACCOUNT_ADDRESS" )
2248
2248
. takes_value ( true )
2249
2249
. multiple ( true )
2250
- . min_values ( 0u64 )
2250
+ . min_values ( 0_usize )
2251
2251
. help ( "The token accounts to withdraw from" )
2252
2252
)
2253
2253
. arg (
You can’t perform that action at this time.
0 commit comments