pub mod error;
pub mod state;
pub mod store;
pub mod transaction_source;
pub mod trie;
pub mod trie_store;
const MAX_DBS: u32 = 2;
pub(crate) const DEFAULT_MAX_DB_SIZE: usize = 52_428_800;
pub(crate) const DEFAULT_MAX_READERS: u32 = 512;
pub(crate) const DEFAULT_MAX_QUERY_DEPTH: u64 = 5;
pub trait GlobalStateReader:
state::StateReader<casper_types::Key, casper_types::StoredValue, Error = error::Error>
{
}
impl<R: state::StateReader<casper_types::Key, casper_types::StoredValue, Error = error::Error>>
GlobalStateReader for R
{
}
pub(crate) const DEFAULT_ENABLE_ENTITY: bool = false;