show unmatured coins in status bar. fixes #1163
This commit is contained in:
@@ -410,9 +410,12 @@ def update_layout():
|
||||
elif not wallet.up_to_date:
|
||||
text = "Synchronizing..."
|
||||
else:
|
||||
c, u = wallet.get_balance()
|
||||
c, u, x = wallet.get_balance()
|
||||
text = "Balance:"+format_satoshis(c)
|
||||
if u : text += ' [' + format_satoshis(u,True).strip() + ']'
|
||||
if u:
|
||||
text += ' [' + format_satoshis(u,True).strip() + ']'
|
||||
if x:
|
||||
text += ' [' + format_satoshis(x,True).strip() + ']'
|
||||
|
||||
|
||||
# vibrate if status changed
|
||||
|
||||
Reference in New Issue
Block a user