Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola committed Sep 27, 2023
1 parent 5ea2b1a commit 545d2ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/orchestrator/src/generators/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ pub fn generate_for_cumulus_node(
if OPS_ADDED_BY_US.contains(&k.as_str()) {
None
} else if k.eq(&"port") && v.eq(&"30333") {
full_node_p2p_needs_to_be_injected = true;
None
full_node_p2p_needs_to_be_injected = true;
None
} else {
let kv_str = format!("{} {}", k, v);
Some(kv_str)
let kv_str = format!("{} {}", k, v);
Some(kv_str)
}
},
})
Expand Down

0 comments on commit 545d2ac

Please sign in to comment.