Skip to content
Closed
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
2 changes: 1 addition & 1 deletion crates/apollo_storage/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ use crate::version::{VersionStorageReader, VersionStorageWriter};
/// The current version of the storage state code.
pub const STORAGE_VERSION_STATE: Version = Version { major: 6, minor: 0 };
/// The current version of the storage blocks code.
pub const STORAGE_VERSION_BLOCKS: Version = Version { major: 6, minor: 0 };
pub const STORAGE_VERSION_BLOCKS: Version = Version { major: 7, minor: 0 };

/// Opens a storage and returns a [`StorageReader`] and a [`StorageWriter`].
pub fn open_storage(
Expand Down
Loading