diff --git a/deploy/deploy.yml b/deploy/deploy.yml index 175fba08..59a8f865 100644 --- a/deploy/deploy.yml +++ b/deploy/deploy.yml @@ -235,7 +235,6 @@ Resources: lsp-listen=127.0.0.1:12312 max-concurrent-htlcs=30 dev-allowdustreserve=true - allow-deprecated-apis=true log-file=/var/log/lightningd/lightningd.log EOL chmod 755 /etc/lightningd/ diff --git a/deploy/lspd-install.sh b/deploy/lspd-install.sh index b377c5e9..c65c365b 100644 --- a/deploy/lspd-install.sh +++ b/deploy/lspd-install.sh @@ -166,7 +166,6 @@ plugin=/home/lightning/.lightning/plugins/lspd_cln_plugin lsp-listen=127.0.0.1:12312 max-concurrent-htlcs=30 dev-allowdustreserve=true -allow-deprecated-apis=true log-file=/var/log/lightningd/lightningd.log EOL chmod 755 /etc/lightningd/ diff --git a/docs/CLN.md b/docs/CLN.md index 76e792c6..ecd9a10d 100644 --- a/docs/CLN.md +++ b/docs/CLN.md @@ -67,7 +67,6 @@ In order to run lspd on top of CLN, you need to run the lspd process and run cln - `--plugin=/path/to/lspd_cln_plugin`: to use lspd as plugin - `--max-concurrent-htlcs=30`: In order to use zero reserve channels on the client side, (local max_accepted_htlcs + remote max_accepted_htlcs + 2) * dust limit must be lower than the channel capacity. Reduce max-concurrent-htlcs or increase channel capacity accordingly. - `--dev-allowdustreserve=true`: In order to allow zero reserve on the client side (requires developer mode turned on) - - `--allow-deprecated-apis=true`: lspd currently uses a deprecated api, so needs this flag set. - `--lsp-listen=127.0.0.1:`: Set on which port the lspd_cln_plugin will listen for lspd communication, must be the same port that is used in pluginAddress parameter in NODES env variable. 1. Run lspd diff --git a/itest/cln_breez_client.go b/itest/cln_breez_client.go index 743f2cb1..e3ddbe1e 100644 --- a/itest/cln_breez_client.go +++ b/itest/cln_breez_client.go @@ -91,7 +91,6 @@ func newClnBreezClient(h *lntest.TestHarness, m *lntest.Miner, name string) Bree // reserve channel. Relevant code: // https://github.com/ElementsProject/lightning/blob/774d16a72e125e4ae4e312b9e3307261983bec0e/openingd/openingd.c#L481-L520 "--max-concurrent-htlcs=30", - "--experimental-anchors", "--developer", ) diff --git a/itest/cln_lspd_node.go b/itest/cln_lspd_node.go index b1eda53d..96e97d70 100644 --- a/itest/cln_lspd_node.go +++ b/itest/cln_lspd_node.go @@ -61,8 +61,6 @@ func NewClnLspdNode(h *lntest.TestHarness, m *lntest.Miner, mem *mempoolApi, nam fmt.Sprintf("--cltv-delta=%d", lspCltvDelta), "--max-concurrent-htlcs=30", "--dev-allowdustreserve=true", - "--allow-deprecated-apis=true", - "--experimental-anchors", "--developer", } lightningNode := lntest.NewClnNode(h, m, name, args...)