Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Review comments to make default values match solana-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Czabaniuk committed Dec 1, 2023
1 parent d7420f9 commit fed7df1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ledger-tool/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1806,8 +1806,8 @@ fn main() {
.value_name("DIR")
.takes_value(true)
.help(
"Output directory for the snapshot [default: --snapshot-archive-path \
if present else --ledger directory]",
"Output directory for the snapshot \
[default: --snapshot-archive-path if present else --ledger directory]",
),
)
.arg(
Expand Down Expand Up @@ -1860,8 +1860,8 @@ fn main() {
.validator(is_pubkey_or_keypair)
.help(
"Path to file containing the pubkey authorized to manage the \
bootstrap validator's stake [default: --bootstrap-validator \
IDENTITY_PUBKEY]",
bootstrap validator's stake
[default: --bootstrap-validator IDENTITY_PUBKEY]",
),
)
.arg(
Expand Down Expand Up @@ -2083,8 +2083,8 @@ fn main() {
.help("Start slot to purge from (inclusive)"),
)
.arg(Arg::with_name("end_slot").index(2).value_name("SLOT").help(
"Ending slot to stop purging (inclusive) [default: the highest slot in the \
ledger]",
"Ending slot to stop purging (inclusive) \
[default: the highest slot in the ledger]",
))
.arg(
Arg::with_name("batch_size")
Expand Down

0 comments on commit fed7df1

Please sign in to comment.