tswaps: perform 10 payment attempts - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit a73f24e82664890316f760ba40732418855b1609
DIR parent fa399f34713b49b88e634af6e86806b2f3f8633e
HTML Author: ThomasV <thomasv@electrum.org>
Date: Wed, 27 May 2020 18:08:18 +0200
swaps: perform 10 payment attempts
Diffstat:
M electrum/submarine_swaps.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/electrum/submarine_swaps.py b/electrum/submarine_swaps.py
t@@ -253,7 +253,7 @@ class SwapManager(Logger):
# add callback to lnwatcher
self.add_lnwatcher_callback(lockup_address, onchain_amount, redeem_script, preimage, privkey, locktime)
# initiate payment.
- success, log = await self.lnworker._pay(invoice, attempts=5)
+ success, log = await self.lnworker._pay(invoice, attempts=10)
return {
'id':response_id,
'success':success,