Skip to content

Commit

Permalink
Fastboots by default (solana-labs#33883)
Browse files Browse the repository at this point in the history
  • Loading branch information
brooksprumo authored Oct 27, 2023
1 parent a2138db commit d04ad65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger/src/use_snapshot_archives_at_startup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use strum::{Display, EnumString, EnumVariantNames, IntoStaticStr, VariantNames};
pub enum UseSnapshotArchivesAtStartup {
/// If snapshot archives are used, they will be extracted and overwrite any existing state
/// already on disk. This will incur the associated runtime costs for extracting.
#[default]
Always,
/// If snapshot archives are not used, then the local snapshot state already on disk is
/// used instead. If there is no local state on disk, startup will fail.
Expand All @@ -18,6 +17,7 @@ pub enum UseSnapshotArchivesAtStartup {
/// restarting. At startup, the snapshot archive would be the newest and loaded from.
/// Note, this also implies that snapshot archives will be used if there is no local snapshot
/// state on disk.
#[default]
WhenNewest,
}

Expand Down

0 comments on commit d04ad65

Please sign in to comment.