fix changed cln option names in itests

This commit is contained in:
Jesse de Wit
2023-06-30 16:35:43 +02:00
parent 748e7c5b29
commit 1b5356d4bf
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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),