@@ -13,8 +13,8 @@ use rollup_node::{
1313 generate_tx, setup_engine,
1414 } ,
1515 BlobProviderArgs , ChainOrchestratorArgs , ConsensusArgs , EngineDriverArgs , L1ProviderArgs ,
16- RollupNodeDatabaseArgs , RollupNodeGasPriceOracleArgs , RollupNodeNetworkArgs , RpcArgs ,
17- ScrollRollupNodeConfig , SequencerArgs ,
16+ PprofArgs , RollupNodeDatabaseArgs , RollupNodeGasPriceOracleArgs , RollupNodeNetworkArgs ,
17+ RpcArgs , ScrollRollupNodeConfig , SequencerArgs ,
1818} ;
1919use rollup_node_chain_orchestrator:: ChainOrchestratorEvent ;
2020use rollup_node_primitives:: BlockInfo ;
@@ -75,6 +75,7 @@ async fn test_should_consolidate_to_block_15k() -> eyre::Result<()> {
7575 consensus_args : ConsensusArgs :: noop ( ) ,
7676 database : None ,
7777 rpc_args : RpcArgs :: default ( ) ,
78+ pprof_args : PprofArgs :: default ( ) ,
7879 } ;
7980
8081 let chain_spec = ( * SCROLL_SEPOLIA ) . clone ( ) ;
@@ -266,6 +267,7 @@ async fn test_should_consolidate_after_optimistic_sync() -> eyre::Result<()> {
266267 consensus_args : ConsensusArgs :: noop ( ) ,
267268 database : None ,
268269 rpc_args : RpcArgs :: default ( ) ,
270+ pprof_args : PprofArgs :: default ( ) ,
269271 } ;
270272
271273 // Create the chain spec for scroll dev with Feynman activated and a test genesis.
@@ -482,6 +484,7 @@ async fn test_consolidation() -> eyre::Result<()> {
482484 consensus_args : ConsensusArgs :: noop ( ) ,
483485 database : None ,
484486 rpc_args : RpcArgs :: default ( ) ,
487+ pprof_args : PprofArgs :: default ( ) ,
485488 } ;
486489
487490 // Create the chain spec for scroll dev with Feynman activated and a test genesis.
@@ -696,6 +699,7 @@ async fn test_chain_orchestrator_fork_choice(
696699 consensus_args : ConsensusArgs :: noop ( ) ,
697700 database : None ,
698701 rpc_args : RpcArgs :: default ( ) ,
702+ pprof_args : PprofArgs :: default ( ) ,
699703 } ;
700704
701705 // Create the chain spec for scroll dev with Feynman activated and a test genesis.
@@ -814,6 +818,7 @@ async fn test_chain_orchestrator_l1_reorg() -> eyre::Result<()> {
814818 consensus_args : ConsensusArgs :: noop ( ) ,
815819 database : None ,
816820 rpc_args : RpcArgs :: default ( ) ,
821+ pprof_args : PprofArgs :: default ( ) ,
817822 } ;
818823
819824 // Create the chain spec for scroll dev with Feynman activated and a test genesis.
0 commit comments