fix: indexer core added to all objects

This commit is contained in:
Pravdyvy
2026-01-13 15:11:51 +02:00
parent 1fd6651121
commit bbbb1c1a23
18 changed files with 134 additions and 18 deletions
+1
View File
@@ -11,6 +11,7 @@ sequencer_runner.workspace = true
wallet.workspace = true
common.workspace = true
key_protocol.workspace = true
indexer.workspace = true
anyhow.workspace = true
env_logger.workspace = true
+7
View File
@@ -1,6 +1,7 @@
use std::time::{Duration, Instant};
use anyhow::Result;
use indexer::config::IndexerConfig;
use integration_tests::TestContext;
use key_protocol::key_management::ephemeral_key_holder::EphemeralKeyHolder;
use log::info;
@@ -185,6 +186,12 @@ impl TpsTestManager {
initial_accounts: initial_public_accounts,
initial_commitments: vec![initial_commitment],
signing_key: [37; 32],
bedrock_addr: "0.0.0.0".to_string(),
bedrock_auth: ("".to_string(), "".to_string()),
indexer_config: IndexerConfig {
resubscribe_interval: 100,
channel_id: [42; 32].into(),
},
}
}
}