Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

token-cli: Add check withdraw-withheld-tokens has sources or include mint #7152

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions token/cli/src/clap_app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
Loading