From 8507e0cf3d91af93e1200e64bd91d205d2d42954 Mon Sep 17 00:00:00 2001 From: Sameh Abouel-saad Date: Wed, 27 Aug 2025 19:06:42 +0300 Subject: [PATCH] fix: changing the short flag for hash from to -H --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index f0444b4..2b01879 100644 --- a/src/main.rs +++ b/src/main.rs @@ -101,7 +101,7 @@ struct FlistInspectionOptions { #[derive(Args, Debug)] struct SyncOptions { /// Hash of the file or block to sync - #[clap(short, long)] + #[clap(short = 'H', long)] hash: Option, /// Source server URL (e.g., http://localhost:8080) @@ -479,7 +479,7 @@ struct TrackBlocksOptions { token: String, /// specific block hash to track - #[clap(short, long, conflicts_with = "all")] + #[clap(short = 'H', long, conflicts_with = "all")] hash: Option, /// track all blocks (default if no hash is provided)