@@ -26,9 +26,9 @@ use tracing::level_filters::LevelFilter;
2626use crate :: block_committer:: commit:: get_all_modified_indices;
2727use crate :: block_committer:: input:: {
2828 contract_address_into_node_index,
29- ConfigImpl ,
3029 FactsDbInitialRead ,
3130 Input ,
31+ ReaderConfig ,
3232 StarknetStorageKey ,
3333 StarknetStorageValue ,
3434 StateDiff ,
@@ -148,7 +148,7 @@ pub(crate) fn create_contract_state_leaf_entry(val: u128) -> (DbKey, DbValue) {
148148 contracts_trie_root_hash: HashOutput ( Felt :: from( 861_u128 + 248_u128 ) ) ,
149149 classes_trie_root_hash: HashOutput ( Felt :: from( 155_u128 + 248_u128 ) ) ,
150150 } ) ,
151- config: ConfigImpl :: new( true , LevelFilter :: DEBUG ) ,
151+ config: ReaderConfig :: new( true , LevelFilter :: DEBUG ) ,
152152 } ,
153153 MapStorage ( DbHashMap :: from( [
154154 // Roots.
@@ -297,7 +297,7 @@ pub(crate) fn create_contract_state_leaf_entry(val: u128) -> (DbKey, DbValue) {
297297 vec![ 7 , 6 , 0 ] ,
298298) ]
299299async fn test_create_original_skeleton_forest (
300- #[ case] input : Input < ConfigImpl , FactsDbInitialRead > ,
300+ #[ case] input : Input < ReaderConfig , FactsDbInitialRead > ,
301301 #[ case] storage : MapStorage ,
302302 #[ case] expected_forest : OriginalSkeletonForest < ' _ > ,
303303 #[ case] expected_original_contracts_trie_leaves : HashMap < ContractAddress , ContractState > ,
@@ -324,7 +324,7 @@ async fn test_create_original_skeleton_forest(
324324 & actual_storage_updates,
325325 & actual_classes_updates,
326326 & forest_sorted_indices,
327- ConfigImpl :: new ( false , LevelFilter :: DEBUG ) ,
327+ ReaderConfig :: new ( false , LevelFilter :: DEBUG ) ,
328328 )
329329 . await
330330 . unwrap ( ) ;
0 commit comments