Cli: expose until param in solana transaction-history (#30372)

Expose until param
This commit is contained in:
Tyera 2023-02-16 14:36:28 -07:00 committed by GitHub
parent 6c58033df5
commit 319efe5d8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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")