@@ -33,7 +33,8 @@ type Key = FixedBytes<1>;
3333type Value = FixedBytes < 32 > ;
3434type LogicalKey = u8 ;
3535type RawValue = [ u8 ; 32 ] ;
36- type Db = CurrentDb < mmb:: Family , deterministic:: Context , Key , Value , Sha256 , TwoCap , 32 > ;
36+ type Db =
37+ CurrentDb < mmb:: Family , deterministic:: Context , Key , Value , Sha256 , TwoCap , 32 , Sequential > ;
3738
3839#[ derive( Arbitrary , Debug , Clone ) ]
3940enum CurrentOperation {
@@ -145,7 +146,7 @@ const MERKLE_ITEMS_PER_BLOB: u64 = 11;
145146const LOG_ITEMS_PER_BLOB : u64 = 7 ;
146147const WRITE_BUFFER_SIZE : usize = 1024 ;
147148
148- fn test_config ( name : & str , page_cache : CacheRef ) -> Config < TwoCap > {
149+ fn test_config ( name : & str , page_cache : CacheRef ) -> Config < TwoCap , Sequential > {
149150 Config {
150151 merkle_config : MerkleConfig {
151152 journal_partition : format ! ( "fuzz-current-mmb-pruning-{name}-merkle-journal" ) ,
@@ -225,7 +226,7 @@ async fn prune_to_floor(db: &mut Db, reference_db: &Db, context: &str) {
225226async fn reopen_pruned_db (
226227 db : Db ,
227228 context : & deterministic:: Context ,
228- config : & Config < TwoCap > ,
229+ config : & Config < TwoCap , Sequential > ,
229230 reference_db : & Db ,
230231 reopen_count : usize ,
231232) -> Db {
@@ -301,7 +302,7 @@ async fn bootstrap_pruned_state(
301302
302303struct ReopenEnv < ' a > {
303304 context : & ' a deterministic:: Context ,
304- config : & ' a Config < TwoCap > ,
305+ config : & ' a Config < TwoCap , Sequential > ,
305306 count : & ' a mut usize ,
306307}
307308
0 commit comments