Skip to content

Commit

Permalink
make ancient appending default to packing
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwashington committed May 7, 2024
1 parent ec54b01 commit d6b93d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accounts-db/src/accounts_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ const SHRINK_COLLECT_CHUNK_SIZE: usize = 50;
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
pub enum CreateAncientStorage {
/// ancient storages are created by appending
#[default]
Append,
/// ancient storages are created by 1-shot write to pack multiple accounts together more efficiently with new formats
#[default]
Pack,
}

Expand Down

0 comments on commit d6b93d5

Please sign in to comment.