diff --git a/token/cli/src/clap_app.rs b/token/cli/src/clap_app.rs index f162ccc0dd8..74c5f4bf186 100644 --- a/token/cli/src/clap_app.rs +++ b/token/cli/src/clap_app.rs @@ -2271,6 +2271,13 @@ pub fn app<'a, 'b>( ) .arg(owner_address_arg()) .arg(multisig_signer_arg()) + .group( + ArgGroup::with_name("source_or_mint") + .arg("source") + .arg("include_mint") + .multiple(true) + .required(true) + ) ) .subcommand( SubCommand::with_name(CommandName::SetTransferFee.into())