mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 20:35:13 +00:00
should fix #1403
This commit is contained in:
parent
37034bdf7f
commit
df206719b7
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class PayToEdit(ScanQRTextEdit):
|
|||
def parse_address(self, line):
|
||||
r = line.strip()
|
||||
m = re.match('^'+RE_ALIAS+'$', r)
|
||||
address = str(m.group(2)) if m else r
|
||||
address = str(m.group(2) if m else r)
|
||||
assert bitcoin.is_address(address)
|
||||
return address
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue