aboutsummaryrefslogtreecommitdiff
path: root/src/table/data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/table/data.rs')
-rw-r--r--src/table/data.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/data.rs b/src/table/data.rs
index 2817a849..5e7314d2 100644
--- a/src/table/data.rs
+++ b/src/table/data.rs
@@ -17,7 +17,7 @@ pub struct TableData<F: TableSchema> {
pub instance: F,
pub store: sled::Tree,
- pub(crate) merkle_updater: Arc<MerkleUpdater>,
+ pub merkle_updater: Arc<MerkleUpdater>,
}
impl<F> TableData<F>