mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
fix format_satoshis for None values
This commit is contained in:
parent
51b62c2983
commit
bbaacef960
1 changed files with 2 additions and 0 deletions
|
@ -109,6 +109,8 @@ def user_dir():
|
|||
|
||||
def format_satoshis(x, is_diff=False, num_zeros = 0, decimal_point = 8, whitespaces=False):
|
||||
from locale import localeconv
|
||||
if x is None:
|
||||
return 'unknown'
|
||||
x = int(x) # Some callers pass Decimal
|
||||
scale_factor = pow (10, decimal_point)
|
||||
integer_part = "{:n}".format(int(abs(x) / float(scale_factor)))
|
||||
|
|
Loading…
Add table
Reference in a new issue