1
0

whitespaces option in format_satoshis

This commit is contained in:
ThomasV
2013-07-13 20:19:52 +02:00
parent 660c975ff5
commit d2b86091b4
4 changed files with 11 additions and 10 deletions

View File

@@ -79,7 +79,7 @@ class ElectrumGui:
time_str = 'pending'
label, is_default_label = self.wallet.get_label(tx_hash)
messages.append( format_str%( time_str, label, format_satoshis(value), format_satoshis(balance) ) )
messages.append( format_str%( time_str, label, format_satoshis(value, whitespaces=True), format_satoshis(balance, whitespaces=True) ) )
self.print_list(messages[::-1], format_str%( _("Date"), _("Description"), _("Amount"), _("Balance")))