Skip to content

Commit 210465f

Browse files
committed
Fix bitfinity tests
1 parent 9e96dd3 commit 210465f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/reth/tests/commands/utils.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
//!
22
//! Utils for bitfinity integration tests
3-
//!
43
use std::{
54
fmt::{Debug, Display, Formatter},
65
path::PathBuf,
@@ -14,7 +13,7 @@ use alloy_primitives::BlockNumber;
1413
use lightspeed_scheduler::JobExecutor;
1514
use parking_lot::Mutex;
1615
use reth::{
17-
args::{BitfinityImportArgs, IC_MAINNET_KEY},
16+
args::BitfinityImportArgs,
1817
commands::bitfinity_import::BitfinityImportCommand,
1918
dirs::{ChainPath, DataDirPath, PlatformPath},
2019
};
@@ -166,13 +165,14 @@ pub async fn bitfinity_import_config_data(
166165
batch_size: 1000,
167166
max_fetch_blocks: 10000,
168167
evmc_principal: LOCAL_EVM_CANISTER_ID.to_string(),
169-
ic_root_key: IC_MAINNET_KEY.to_string(),
170168
backup_rpc_url: backup_evm_datasource_url,
171169
max_retries: 3,
172170
retry_delay_secs: 3,
173171
check_evm_state_before_importing: false,
174172
max_block_age_secs: 600,
175173
confirm_unsafe_blocks: false,
174+
fetch_ic_root_key: false,
175+
ic_url: None,
176176
};
177177

178178
Ok((

0 commit comments

Comments
 (0)