1
2
3
4
5
6
7
8
9
10
11
// Copyright 2019 Conflux Foundation. All rights reserved.
// Conflux is free software and distributed under GNU General Public License.
// See http://www.gnu.org/licenses/

pub mod single_mpt_storage_manager;
mod snapshot_manager;
/// Storage manager manages the lifecycle of SnapshotMPTS and DeltaMPTs.
pub mod storage_manager;

// FIXME: pub scope?
pub use self::storage_manager::*;