1
0

wallet: use get_request(addr) instead of receive_requests[addr]

since "invoice unification", requests are often keyed by rhash
This commit is contained in:
SomberNight
2022-07-12 15:38:54 +02:00
parent 44655bcca2
commit 056de017f0
3 changed files with 4 additions and 4 deletions

View File

@@ -269,7 +269,7 @@ class ElectrumWindow(App, Logger, EventListener):
def on_event_request_status(self, wallet, key, status):
if wallet != self.wallet:
return
req = self.wallet.receive_requests.get(key)
req = self.wallet.get_request(key)
if req is None:
return
if self.receive_screen: