mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-05 05:15:12 +00:00
qt receive tab: fix on-chain pay.requests without amount
This commit is contained in:
parent
c3504cec94
commit
ff94240139
1 changed files with 1 additions and 1 deletions
|
@ -1274,7 +1274,7 @@ class Abstract_Wallet(AddressSynchronizer):
|
||||||
return
|
return
|
||||||
out = copy.copy(r)
|
out = copy.copy(r)
|
||||||
out['type'] = PR_TYPE_ADDRESS
|
out['type'] = PR_TYPE_ADDRESS
|
||||||
out['URI'] = 'bitcoin:' + addr + '?amount=' + format_satoshis(out.get('amount'))
|
out['URI'] = self.get_request_URI(addr)
|
||||||
status, conf = self.get_request_status(addr)
|
status, conf = self.get_request_status(addr)
|
||||||
out['status'] = status
|
out['status'] = status
|
||||||
if conf is not None:
|
if conf is not None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue