fix: make wallet argument required for operator ban user command

This commit is contained in:
Noor 2025-03-24 18:10:34 +05:30
parent 0bd0eb19ed
commit 103fc2d7f5
Signed by: noormohammedb
GPG Key ID: D83EFB8B3B967146

@ -586,6 +586,7 @@ fn clap_cmd() -> Command {
.arg( .arg(
Arg::new("wallet") Arg::new("wallet")
.long("wallet") .long("wallet")
.required(true)
.help("wallet address of the user you are banning") .help("wallet address of the user you are banning")
) )
) )