From ccfb7d7d7f4caa6992cb7d64087ce0b52ec933d0 Mon Sep 17 00:00:00 2001 From: parazyd Date: Sat, 16 Apr 2022 20:38:16 +0200 Subject: [PATCH] blockchain: Export some structs. --- src/blockchain2/mod.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/blockchain2/mod.rs b/src/blockchain2/mod.rs index e3a43134e..7aa2dfb34 100644 --- a/src/blockchain2/mod.rs +++ b/src/blockchain2/mod.rs @@ -8,19 +8,19 @@ use crate::{ }; pub mod blockstore; -use blockstore::BlockStore; +pub use blockstore::BlockStore; pub mod metadatastore; -use metadatastore::StreamletMetadataStore; +pub use metadatastore::StreamletMetadataStore; pub mod nfstore; -use nfstore::NullifierStore; +pub use nfstore::NullifierStore; pub mod rootstore; -use rootstore::RootStore; +pub use rootstore::RootStore; pub mod txstore; -use txstore::TxStore; +pub use txstore::TxStore; pub struct Blockchain { /// Blocks sled tree