use casper_types::ProtocolVersion;
pub mod in_memory;
pub mod lmdb;
#[cfg(test)]
mod tests;
use crate::storage::{protocol_data::ProtocolData, store::Store};
const NAME: &str = "PROTOCOL_DATA_STORE";
pub trait ProtocolDataStore: Store<ProtocolVersion, ProtocolData> {}