From 1b5356d4bf0565139e9e33bfb22d36b21b2c90ea Mon Sep 17 00:00:00 2001 From: Jesse de Wit Date: Fri, 30 Jun 2023 16:35:43 +0200 Subject: [PATCH] fix changed cln option names in itests --- itest/cln_breez_client.go | 2 +- itest/cln_lspd_node.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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),