feat(bin, storage): db versioning (#3130)

This commit is contained in:
Alexey Shekhirin
2023-06-19 17:43:17 +01:00
committed by GitHub
parent d02c87d20e
commit 2b6a0468fc
11 changed files with 204 additions and 17 deletions

View File

@ -68,6 +68,7 @@ pub mod abstraction;
mod implementation;
pub mod tables;
mod utils;
pub mod version;
#[cfg(feature = "mdbx")]
/// Bindings for [MDBX](https://libmdbx.dqdkfa.ru/).
@ -79,3 +80,4 @@ pub mod mdbx {
pub use abstraction::*;
pub use reth_interfaces::db::DatabaseError;
pub use tables::*;
pub use utils::is_database_empty;