From 0f33a0280b142d828836ce8c97e6d3bdccaa8eec Mon Sep 17 00:00:00 2001 From: Nadin Jbara <93648739+nadin-Starkware@users.noreply.github.com> Date: Tue, 29 Oct 2024 14:10:35 +0200 Subject: [PATCH] fix: fix disabled field dump (#1642) --- crates/mempool_node/src/config/component_execution_config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/mempool_node/src/config/component_execution_config.rs b/crates/mempool_node/src/config/component_execution_config.rs index da68f3b42c..d1b50ebe64 100644 --- a/crates/mempool_node/src/config/component_execution_config.rs +++ b/crates/mempool_node/src/config/component_execution_config.rs @@ -25,9 +25,9 @@ impl ComponentExecutionMode { fn dump(&self) -> BTreeMap { match self { ComponentExecutionMode::Disabled => BTreeMap::from_iter([ser_param( - "skip_component", + "Disabled", &"Disabled", - "The component is skipped.", + "The component is disabled.", ParamPrivacyInput::Public, )]), ComponentExecutionMode::LocalExecution { enable_remote_connection } => {