Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ deprecated, signaling their inclusion in the Agave Unstable API. Enable the
`agave-unstable-api` crate feature to acknowledge use of an interface that may break
without warning. From v4.0.0 onward, symbols in these crates will be unavailable without
`agave-unstable-api` enabled.
* The `--dev-halt-at-slot` flag is now deprecated.

#### Changes
* The accounts index is now kept entirely in memory by default.
Expand Down
10 changes: 10 additions & 0 deletions validator/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,16 @@ fn deprecated_arguments() -> Vec<DeprecatedArg> {
.help("Use CUDA"),
usage_warning: "CUDA support will be dropped"
);
add_arg!(
// deprecated in v3.1.3
Arg::with_name("dev_halt_at_slot")
.long("dev-halt-at-slot")
.value_name("SLOT")
.validator(is_slot)
.takes_value(true)
.help("Halt the validator when it reaches the given slot"),
usage_warning: "--dev-halt-at-slot will be removed in the future"
);
add_arg!(
// deprecated in v3.1.0
Arg::with_name("tpu_coalesce_ms")
Expand Down
8 changes: 0 additions & 8 deletions validator/src/commands/run/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,14 +240,6 @@ pub fn add_args<'a>(app: App<'a, 'a>, default_args: &'a DefaultArgs) -> App<'a,
the cluster. The --no-voting flag is implicit when this flag is enabled",
),
)
.arg(
Arg::with_name("dev_halt_at_slot")
.long("dev-halt-at-slot")
.value_name("SLOT")
.validator(is_slot)
.takes_value(true)
.help("Halt the validator when it reaches the given slot"),
)
.arg(
Arg::with_name("rpc_port")
.long("rpc-port")
Expand Down
Loading