From f5fa2f8d5044c5811734c68fe25d37f79a46c105 Mon Sep 17 00:00:00 2001 From: Josh Lind <josh.lind@hotmail.com> Date: Tue, 17 Sep 2024 18:00:03 -0400 Subject: [PATCH] [Consensus Observer] Enable CO for VFNs. --- config/src/config/consensus_observer_config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/src/config/consensus_observer_config.rs b/config/src/config/consensus_observer_config.rs index 0ca55c31d50e9..02d8572134950 100644 --- a/config/src/config/consensus_observer_config.rs +++ b/config/src/config/consensus_observer_config.rs @@ -9,8 +9,8 @@ use serde::{Deserialize, Serialize}; use serde_yaml::Value; // Useful constants for enabling consensus observer on different node types -const ENABLE_ON_VALIDATORS: bool = false; -const ENABLE_ON_VALIDATOR_FULLNODES: bool = false; +const ENABLE_ON_VALIDATORS: bool = true; +const ENABLE_ON_VALIDATOR_FULLNODES: bool = true; const ENABLE_ON_PUBLIC_FULLNODES: bool = false; #[derive(Clone, Copy, Debug, Deserialize, PartialEq, Serialize)]