@@ -648,7 +648,7 @@ async fn command_initialize_group(
648
648
token_pubkey : Pubkey ,
649
649
mint_authority : Pubkey ,
650
650
update_authority : Pubkey ,
651
- max_size : u32 ,
651
+ max_size : u64 ,
652
652
bulk_signers : Vec < Arc < dyn Signer > > ,
653
653
) -> CommandResult {
654
654
let token = token_client_from_config ( config, & token_pubkey, None ) ?;
@@ -679,7 +679,7 @@ async fn command_update_group_max_size(
679
679
config : & Config < ' _ > ,
680
680
token_pubkey : Pubkey ,
681
681
update_authority : Pubkey ,
682
- new_max_size : u32 ,
682
+ new_max_size : u64 ,
683
683
bulk_signers : Vec < Arc < dyn Signer > > ,
684
684
) -> CommandResult {
685
685
let token = token_client_from_config ( config, & token_pubkey, None ) ?;
@@ -3637,7 +3637,7 @@ pub async fn process_command<'a>(
3637
3637
let token_pubkey = pubkey_of_signer ( arg_matches, "token" , & mut wallet_manager)
3638
3638
. unwrap ( )
3639
3639
. unwrap ( ) ;
3640
- let max_size = value_t_or_exit ! ( arg_matches, "max_size" , u32 ) ;
3640
+ let max_size = value_t_or_exit ! ( arg_matches, "max_size" , u64 ) ;
3641
3641
let ( mint_authority_signer, mint_authority) =
3642
3642
config. signer_or_default ( arg_matches, "mint_authority" , & mut wallet_manager) ;
3643
3643
let update_authority =
@@ -3658,7 +3658,7 @@ pub async fn process_command<'a>(
3658
3658
let token_pubkey = pubkey_of_signer ( arg_matches, "token" , & mut wallet_manager)
3659
3659
. unwrap ( )
3660
3660
. unwrap ( ) ;
3661
- let new_max_size = value_t_or_exit ! ( arg_matches, "new_max_size" , u32 ) ;
3661
+ let new_max_size = value_t_or_exit ! ( arg_matches, "new_max_size" , u64 ) ;
3662
3662
let ( update_authority_signer, update_authority) =
3663
3663
config. signer_or_default ( arg_matches, "update_authority" , & mut wallet_manager) ;
3664
3664
let bulk_signers = vec ! [ update_authority_signer] ;
0 commit comments