Skip to content

Commit

Permalink
fix: enable streaming for in-memory observers (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgalabru committed Sep 8, 2023
1 parent 480d05c commit 50f8393
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/ordhook-core/src/service/predicates.rs
Expand Up @@ -219,7 +219,8 @@ pub fn create_and_consolidate_chainhook_config_with_predicates(
),
predicate,
) {
Ok(spec) => {
Ok(ref mut spec) => {
chainhook_config.enable_specification(spec);
info!(
ctx.expect_logger(),
"Predicate {} retrieved from config and loaded",
Expand Down

0 comments on commit 50f8393

Please sign in to comment.