We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8565b commit 8998a86Copy full SHA for 8998a86
src/warnet/cli/network.py
@@ -225,7 +225,8 @@ def generate_node_config(node: int, data: dict) -> str:
225
zmqpubrawtx=tcp://0.0.0.0:28333
226
"""
227
node_specific_config = data.get("bitcoin_config", "")
228
- return f"{base_config}\n{node_specific_config.replace(",", "\n")}"
+ node_specific_config = node_specific_config.replace(",", "\n")
229
+ return f"{base_config}\n{node_specific_config}"
230
231
232
def set_kubectl_context(namespace: str):
0 commit comments