From dfdce54e57208e95932fd86d16e60f6dc06eb754 Mon Sep 17 00:00:00 2001 From: Morata Date: Mon, 8 Jun 2026 09:33:48 -0300 Subject: [PATCH] fix(lnd): enable MPP via max_parts=16 and time_pref in SendPaymentV2 (#3916) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: dni ⚡ --- lnbits/wallets/lndgrpc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lnbits/wallets/lndgrpc.py b/lnbits/wallets/lndgrpc.py index bef94153e..ceaa44f81 100644 --- a/lnbits/wallets/lndgrpc.py +++ b/lnbits/wallets/lndgrpc.py @@ -192,6 +192,8 @@ class LndWallet(Wallet): fee_limit_msat=fee_limit_msat, timeout_seconds=30, no_inflight_updates=True, + max_parts=16, + time_pref=0.9, ) try: res: Payment = await self.router_rpc.SendPaymentV2(req).read()