1
0

do not print the entire payment log again, this is redundant

This commit is contained in:
ThomasV
2020-04-08 09:46:16 +02:00
parent caefea19dd
commit 6307e13549

View File

@@ -832,7 +832,6 @@ class LNWallet(LNWorker):
self.network.trigger_callback('payment_succeeded', key)
else:
self.network.trigger_callback('payment_failed', key, reason)
self.logger.debug(f'payment attempts log for RHASH {key}: {repr(log)}')
return success
async def _pay_to_route(self, route: LNPaymentRoute, lnaddr: LnAddr) -> PaymentAttemptLog: