From c4b7ba7a7a8137cc8cbcf33786ebbea5405f6375 Mon Sep 17 00:00:00 2001 From: Zekun Li Date: Thu, 26 Sep 2024 15:15:56 -0700 Subject: [PATCH] Revert "[Consensus Observer] Enable CO for VFNs." This reverts commit f5fa2f8d5044c5811734c68fe25d37f79a46c105. --- 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 02d8572134950..0ca55c31d50e9 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 = true; -const ENABLE_ON_VALIDATOR_FULLNODES: bool = true; +const ENABLE_ON_VALIDATORS: bool = false; +const ENABLE_ON_VALIDATOR_FULLNODES: bool = false; const ENABLE_ON_PUBLIC_FULLNODES: bool = false; #[derive(Clone, Copy, Debug, Deserialize, PartialEq, Serialize)]