mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
fix #1274
This commit is contained in:
parent
ec795ba3c0
commit
fc23b0f490
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ def format_satoshis(x, is_diff=False, num_zeros = 0, decimal_point = 8, whitespa
|
|||
if whitespaces:
|
||||
result += " " * (decimal_point - len(fract_part))
|
||||
result = " " * (15 - len(result)) + result
|
||||
return result
|
||||
return result.decode('utf8')
|
||||
|
||||
def format_time(timestamp):
|
||||
import datetime
|
||||
|
|
Loading…
Add table
Reference in a new issue