diff --git a/itest/cln_breez_client.go b/itest/cln_breez_client.go index 7cf1911..369ba3b 100644 --- a/itest/cln_breez_client.go +++ b/itest/cln_breez_client.go @@ -78,7 +78,7 @@ func newClnBreezClient(h *lntest.TestHarness, m *lntest.Miner, name string) Bree name, fmt.Sprintf("--plugin=%s", pluginFilePath), fmt.Sprintf("--plugin=%s", *clnPluginExec), - fmt.Sprintf("--lsp.listen=%s", htlcAcceptorAddress), + fmt.Sprintf("--lsp-listen=%s", htlcAcceptorAddress), // NOTE: max-concurrent-htlcs is 30 on mainnet by default. In cln V22.11 // there is a check for 'all dust' commitment transactions. The max // concurrent HTLCs of both sides of the channel * dust limit must be diff --git a/itest/cln_lspd_node.go b/itest/cln_lspd_node.go index e410201..f5f94bc 100644 --- a/itest/cln_lspd_node.go +++ b/itest/cln_lspd_node.go @@ -53,7 +53,7 @@ func NewClnLspdNode(h *lntest.TestHarness, m *lntest.Miner, mem *mempoolApi, nam args := []string{ fmt.Sprintf("--plugin=%s", pluginBinary), - fmt.Sprintf("--lsp.listen=%s", pluginAddress), + fmt.Sprintf("--lsp-listen=%s", pluginAddress), fmt.Sprintf("--fee-base=%d", lspBaseFeeMsat), fmt.Sprintf("--fee-per-satoshi=%d", lspFeeRatePpm), fmt.Sprintf("--cltv-delta=%d", lspCltvDelta),