Browse Source
qt receive tab: fix on-chain pay.requests without amount
dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/wallet.py
|
|
@ -1274,7 +1274,7 @@ class Abstract_Wallet(AddressSynchronizer): |
|
|
|
return |
|
|
|
out = copy.copy(r) |
|
|
|
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) |
|
|
|
out['status'] = status |
|
|
|
if conf is not None: |
|
|
|