Skip to content

Commit

Permalink
fix: fix disabled field dump (#1642)
Browse files Browse the repository at this point in the history
  • Loading branch information
nadin-Starkware authored Oct 29, 2024
1 parent e61a841 commit 0f33a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/mempool_node/src/config/component_execution_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ impl ComponentExecutionMode {
fn dump(&self) -> BTreeMap<ParamPath, SerializedParam> {
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 } => {
Expand Down

0 comments on commit 0f33a02

Please sign in to comment.