pub trait BlockChainDBHandler: Send + Sync {
fn open(&self, path: &Path) -> Result<Arc<dyn BlockChainDB>>;
}
Expand description
Generic database handler. This trait contains one function open
. When called, it opens database with a
predefined config.