From 319efe5d8d0aa505c7e0f4c6dbf9f5b7d1aa12c6 Mon Sep 17 00:00:00 2001 From: Tyera Date: Thu, 16 Feb 2023 14:36:28 -0700 Subject: [PATCH] Cli: expose until param in solana transaction-history (#30372) Expose until param --- cli/src/cluster_query.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cli/src/cluster_query.rs b/cli/src/cluster_query.rs index 46feb665f..a3c3d6750 100644 --- a/cli/src/cluster_query.rs +++ b/cli/src/cluster_query.rs @@ -432,6 +432,13 @@ impl ClusterQuerySubCommands for App<'_, '_> { .takes_value(true) .help("Start with the first signature older than this one"), ) + .arg( + Arg::with_name("until") + .long("until") + .value_name("TRANSACTION_SIGNATURE") + .takes_value(true) + .help("List until this transaction signature, if found before limit reached"), + ) .arg( Arg::with_name("show_transactions") .long("show-transactions")