imbibe-persistence 0.0.1

details the database model of the information extracted from a block and its constituent transactions
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "database")]
mod database;

mod error;

pub use crate::record::error::InvalidValueError;

#[cfg(feature = "database")]
pub use database::*;

pub use self::error::StoreError;