Skip to content

Commit 84e573f

Browse files
committed
feat(config): enable horizon
1 parent cf76df4 commit 84e573f

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

contrib/indexer-service/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ trigger_value_divisor = 500_000
4646
"ACCOUNT0_ADDRESS_PLACEHOLDER" = "http://tap-aggregator:7610"
4747

4848
[horizon]
49-
enabled = false
49+
enabled = true

crates/tap-agent/src/agent.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,8 @@ pub async fn start_agent() -> (ActorRef<SenderAccountsManagerMessage>, JoinHandl
176176

177177
let config = Box::leak(Box::new({
178178
let mut config = SenderAccountConfig::from_config(&CONFIG);
179-
// FIXME: This is a temporary measure to disable
180-
// Horizon, even if enabled through our configuration file.
181-
// Force disable Horizon support
182-
config.horizon_enabled = false;
179+
// Enable Horizon support
180+
config.horizon_enabled = true;
183181
// Add a warning log so operators know their setting was ignore
184182
if CONFIG.horizon.enabled {
185183
tracing::warn!(

0 commit comments

Comments
 (0)