ThomasV 10 years ago
parent
commit
fc23b0f490
  1. 2
      lib/util.py

2
lib/util.py

@ -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…
Cancel
Save