@@ -23,8 +23,8 @@ use super::{
23
23
} ;
24
24
use crate :: {
25
25
config:: {
26
- BitcoinServiceConfig , FullLightClientProverConfig , ProverConfig , RpcConfig , RunnerConfig ,
27
- SequencerConfig , StorageConfig ,
26
+ BatchProverConfig , BitcoinServiceConfig , FullLightClientProverConfig ,
27
+ LightClientProverConfig , RpcConfig , RunnerConfig , SequencerConfig , StorageConfig ,
28
28
} ,
29
29
traits:: NodeT ,
30
30
utils:: { get_default_genesis_path, get_workspace_root} ,
@@ -191,6 +191,7 @@ impl<T: TestCase> TestCaseRunner<T> {
191
191
include_tx_body : true ,
192
192
accept_public_input_as_proven : Some ( true ) ,
193
193
sync_blocks_count : 10 ,
194
+ pruning_config : None ,
194
195
} ) ;
195
196
196
197
let batch_prover_rollup = {
@@ -336,14 +337,14 @@ pub trait TestCase: Send + Sync + 'static {
336
337
337
338
/// Returns the batch prover configuration for the test.
338
339
/// Override this method to provide a custom batch prover configuration.
339
- fn batch_prover_config ( ) -> ProverConfig {
340
- ProverConfig :: default ( )
340
+ fn batch_prover_config ( ) -> BatchProverConfig {
341
+ BatchProverConfig :: default ( )
341
342
}
342
343
343
344
/// Returns the light client prover configuration for the test.
344
345
/// Override this method to provide a custom light client prover configuration.
345
- fn light_client_prover_config ( ) -> ProverConfig {
346
- ProverConfig :: default ( )
346
+ fn light_client_prover_config ( ) -> LightClientProverConfig {
347
+ LightClientProverConfig :: default ( )
347
348
}
348
349
349
350
/// Returns the test setup
0 commit comments