Skip to content

Commit 8998a86

Browse files
committed
fix unmatched params
1 parent ea8565b commit 8998a86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/warnet/cli/network.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ def generate_node_config(node: int, data: dict) -> str:
225225
zmqpubrawtx=tcp://0.0.0.0:28333
226226
"""
227227
node_specific_config = data.get("bitcoin_config", "")
228-
return f"{base_config}\n{node_specific_config.replace(",", "\n")}"
228+
node_specific_config = node_specific_config.replace(",", "\n")
229+
return f"{base_config}\n{node_specific_config}"
229230

230231

231232
def set_kubectl_context(namespace: str):

0 commit comments

Comments
 (0)