Merge pull request #303 from logos-blockchain/bug/conflicting-flags

bug(wallet): conflicting flag -h for transaction info
This commit is contained in:
Sergio Chouhy 2026-01-23 17:55:59 -03:00 committed by GitHub
commit 7d48fe70b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ pub enum ChainSubcommand {
/// Get transaction at hash from sequencer
Transaction {
/// hash - valid 32 byte hex string
#[arg(short, long)]
#[arg(short = 't', long)]
hash: String,
},
}