Use pub(crate) for create_db items, not pub

This commit is contained in:
Luke Parker
2023-12-18 11:09:16 -05:00
parent c8747e23c5
commit a4c82632fb
2 changed files with 8 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ mod inner_db {
}
);
}
pub use inner_db::{NextBlock, BatchInstructionsHashDb};
pub(crate) use inner_db::{NextBlock, BatchInstructionsHashDb};
pub struct HandledEvent;
impl HandledEvent {