add account id to account balance listing
This commit is contained in:
parent
c2a9027c19
commit
40651322d0
1 changed files with 2 additions and 1 deletions
|
@ -50,7 +50,8 @@ class WalletManager(object):
|
||||||
'account': account.name,
|
'account': account.name,
|
||||||
'coins': round(satoshis/COIN, 2),
|
'coins': round(satoshis/COIN, 2),
|
||||||
'satoshis': satoshis,
|
'satoshis': satoshis,
|
||||||
'is_default_account': i == 0 and j == 0
|
'is_default_account': i == j == 0,
|
||||||
|
'id': account.public_key.address
|
||||||
})
|
})
|
||||||
defer.returnValue(balances)
|
defer.returnValue(balances)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue