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