tfollow-up previous commit - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0070e5036c1c54c2bd29911de218e92709e9795a DIR parent 13317c2f5139f1f1873c7fae1861b5d3031b690d HTML Author: ThomasV <thomasv@electrum.org> Date: Sun, 10 May 2020 21:45:10 +0200 follow-up previous commit Diffstat: M electrum/lnworker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/lnworker.py b/electrum/lnworker.py t@@ -1207,7 +1207,7 @@ class LNWallet(LNWorker): def payment_received(self, chan, payment_hash: bytes): self.set_payment_status(payment_hash, PR_PAID) - util.trigger_callback('request_status', payment_hash.hex(), PR_PAID) + util.trigger_callback('request_status', self.wallet, payment_hash.hex(), PR_PAID) util.trigger_callback('ln_payment_completed', payment_hash, chan.channel_id) async def _calc_routing_hints_for_invoice(self, amount_sat: Optional[int]):