mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
Make --db case insensitive again (#12630)
This was broken in the switch to Clap v4.
This commit is contained in:
@@ -23,7 +23,7 @@ use clap::Args;
|
||||
#[derive(Debug, Clone, PartialEq, Args)]
|
||||
pub struct DatabaseParams {
|
||||
/// Select database backend to use.
|
||||
#[arg(long, alias = "db", value_name = "DB", value_enum)]
|
||||
#[arg(long, alias = "db", value_name = "DB", ignore_case = true, value_enum)]
|
||||
pub database: Option<Database>,
|
||||
|
||||
/// Limit the memory the database cache can use.
|
||||
|
||||
Reference in New Issue
Block a user