From cece325f0bcd19df7d9246e582b030a6681ae696 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 4 Jan 2025 21:09:35 +0100 Subject: [PATCH 1/3] remove MINT_LND_ENABLE_MPP from .env.example since it is now default --- .env.example | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.env.example b/.env.example index 24cba008..f571adef 100644 --- a/.env.example +++ b/.env.example @@ -90,10 +90,6 @@ MINT_LND_REST_CERT="/home/lnd/.lnd/tls.cert" MINT_LND_REST_MACAROON="/home/lnd/.lnd/data/chain/bitcoin/regtest/admin.macaroon" MINT_LND_REST_CERT_VERIFY=True -# Use with LND -# This setting enables MPP support for Partial multi-path payments (NUT-15) -MINT_LND_ENABLE_MPP=TRUE - # Use with CLNRestWallet MINT_CLNREST_URL=https://localhost:3010 MINT_CLNREST_CERT="./clightning-2/regtest/ca.pem" From 26f6c9529e5c22566d9042f1b94f9facb72d8d32 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 4 Jan 2025 21:10:19 +0100 Subject: [PATCH 2/3] remove MINT_LND_ENABLE_MPP from CI regtest workflow since it is now default --- .github/workflows/regtest.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/regtest.yml b/.github/workflows/regtest.yml index 72692fa7..159280f5 100644 --- a/.github/workflows/regtest.yml +++ b/.github/workflows/regtest.yml @@ -63,12 +63,6 @@ jobs: MINT_LND_RPC_ENDPOINT: localhost:10009 MINT_LND_RPC_CERT: ./regtest/data/lnd-3/tls.cert MINT_LND_RPC_MACAROON: ./regtest/data/lnd-3/data/chain/bitcoin/regtest/admin.macaroon - - MINT_LND_ENABLE_MPP: true - # LND_GRPC_ENDPOINT: localhost - # LND_GRPC_PORT: 10009 - # LND_GRPC_CERT: ./regtest/data/lnd-3/tls.cert - # LND_GRPC_MACAROON: ./regtest/data/lnd-3/data/chain/bitcoin/regtest/admin.macaroon # CoreLightningRestWallet MINT_CORELIGHTNING_REST_URL: https://localhost:3001 MINT_CORELIGHTNING_REST_MACAROON: ./regtest/data/clightning-2-rest/access.macaroon From 322863b706d66f95819b4ea4848109cafd3719f6 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 4 Jan 2025 21:10:49 +0100 Subject: [PATCH 3/3] enable MINT_CLNREST_ENABLE_MPP for CI regtest workflow by removing false assignment, since it is now default --- .github/workflows/regtest.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/regtest.yml b/.github/workflows/regtest.yml index 159280f5..05146245 100644 --- a/.github/workflows/regtest.yml +++ b/.github/workflows/regtest.yml @@ -71,7 +71,6 @@ jobs: MINT_CLNREST_URL: https://localhost:3010 MINT_CLNREST_RUNE: ./regtest/data/clightning-2/rune MINT_CLNREST_CERT: ./regtest/data/clightning-2/regtest/ca.pem - MINT_CLNREST_ENABLE_MPP: false run: | sudo chmod -R 777 . make test