mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
set daemon flag on get_payment_request thread
This commit is contained in:
parent
7796243fdd
commit
fbf56c9cfa
1 changed files with 3 additions and 1 deletions
|
@ -1154,7 +1154,9 @@ class ElectrumWindow(QMainWindow):
|
|||
else:
|
||||
self.emit(SIGNAL('payment_request_error'))
|
||||
|
||||
self.pr_thread = threading.Thread(target=get_payment_request_thread).start()
|
||||
t = threading.Thread(target=get_payment_request_thread)
|
||||
t.setDaemon(True)
|
||||
t.start()
|
||||
self.prepare_for_payment_request()
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue