@@ -13,7 +13,7 @@ use crate::{
1313 contiguous:: { Contiguous , Mutable , Reader } ,
1414 Error as JournalError ,
1515 } ,
16- merkle:: { Bagging , Family , Location , Proof } ,
16+ merkle:: { Family , Location , Proof } ,
1717 qmdb:: {
1818 bitmap:: Shared , build_snapshot_from_log, delete_known_loc,
1919 operation:: Operation as OperationTrait , update_known_loc, Error ,
@@ -79,10 +79,6 @@ pub struct Db<
7979 /// Whether the operations root uses inactive-prefix split semantics.
8080 pub ( crate ) split_root : bool ,
8181
82- /// Bagging used by the operations root.
83- #[ allow( dead_code) ]
84- pub ( crate ) root_bagging : Bagging ,
85-
8682 /// A location before which all operations are "inactive" (that is, operations before this point
8783 /// are over keys that have been updated by some operation at or after this point).
8884 pub ( crate ) inactivity_floor_loc : Location < F > ,
@@ -573,7 +569,6 @@ where
573569 log : AuthenticatedLog < F , E , C , H > ,
574570 shared_bitmap : Option < Arc < Shared < N > > > ,
575571 split_root : bool ,
576- root_bagging : Bagging ,
577572 ) -> Result < Self , crate :: qmdb:: Error < F > > {
578573 let ( last_commit_loc, inactivity_floor_loc, active_keys, bitmap) = {
579574 let reader = log. reader ( ) . await ;
@@ -666,7 +661,6 @@ where
666661 log,
667662 root,
668663 split_root,
669- root_bagging,
670664 inactivity_floor_loc,
671665 snapshot : index,
672666 last_commit_loc,
0 commit comments