From a5fcf0c2ef98a6b28f9c35f47eec1e145c6c010d Mon Sep 17 00:00:00 2001 From: William Hankins Date: Fri, 24 Oct 2025 17:48:51 +0000 Subject: [PATCH] fix: use correct blocks subscription in chain store module Signed-off-by: William Hankins --- modules/chain_store/src/chain_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/chain_store/src/chain_store.rs b/modules/chain_store/src/chain_store.rs index 08487c2a..9a6ae144 100644 --- a/modules/chain_store/src/chain_store.rs +++ b/modules/chain_store/src/chain_store.rs @@ -24,7 +24,7 @@ use tracing::error; use crate::stores::{fjall::FjallStore, Block, Store}; -const DEFAULT_BLOCKS_TOPIC: &str = "cardano.block.body"; +const DEFAULT_BLOCKS_TOPIC: &str = "cardano.block.available"; const DEFAULT_PROTOCOL_PARAMETERS_TOPIC: &str = "cardano.protocol.parameters"; const DEFAULT_STORE: &str = "fjall";