commit a73f24e82664890316f760ba40732418855b1609
parent fa399f34713b49b88e634af6e86806b2f3f8633e
Author: ThomasV <thomasv@electrum.org>
Date: Wed, 27 May 2020 18:08:18 +0200
swaps: perform 10 payment attempts
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/submarine_swaps.py b/electrum/submarine_swaps.py
@@ -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,