add account id to account balance listing

This commit is contained in:
Lex Berezhny 2018-07-25 12:05:25 -04:00
parent c2a9027c19
commit 40651322d0

View file

@ -50,7 +50,8 @@ class WalletManager(object):
'account': account.name,
'coins': round(satoshis/COIN, 2),
'satoshis': satoshis,
'is_default_account': i == 0 and j == 0
'is_default_account': i == j == 0,
'id': account.public_key.address
})
defer.returnValue(balances)