pub fn init(
config: Config,
) -> Result<(BlockchainReadHandle, BlockchainWriteHandle, Arc<ConcreteEnv>), InitError>
Expand description
Initialize a database & thread-pool, and return a read/write handle to it.
Once the returned handles are Drop::drop
ed, the reader
thread-pool and writer thread will exit automatically.
ยงErrors
This will forward the error if crate::open
failed.