mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 23:41:35 +00:00
parse_URI: amount is in satoshis
This commit is contained in:
parent
af08e704d9
commit
f43ddf1d8f
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ def parse_URI(uri):
|
|||
k = int(m.group(2)) - 8
|
||||
amount = Decimal(m.group(1)) * pow( Decimal(10) , k)
|
||||
else:
|
||||
amount = Decimal(am)
|
||||
amount = Decimal(am) * 100000000
|
||||
if 'message' in pq:
|
||||
message = pq['message'][0]
|
||||
if 'label' in pq:
|
||||
|
|
Loading…
Add table
Reference in a new issue