mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 21:23:27 +01:00
wallet api: don't truncate address in subaddress_account
Same behaviour as subaddress.cpp now.
This commit is contained in:
parent
094b0c4d00
commit
b8c5f550c1
@ -62,7 +62,7 @@ void SubaddressAccountImpl::refresh()
|
|||||||
{
|
{
|
||||||
m_rows.push_back(new SubaddressAccountRow(
|
m_rows.push_back(new SubaddressAccountRow(
|
||||||
i,
|
i,
|
||||||
m_wallet->m_wallet->get_subaddress_as_str({i,0}).substr(0,6),
|
m_wallet->m_wallet->get_subaddress_as_str({i,0}),
|
||||||
m_wallet->m_wallet->get_subaddress_label({i,0}),
|
m_wallet->m_wallet->get_subaddress_label({i,0}),
|
||||||
cryptonote::print_money(m_wallet->m_wallet->balance(i)),
|
cryptonote::print_money(m_wallet->m_wallet->balance(i)),
|
||||||
cryptonote::print_money(m_wallet->m_wallet->unlocked_balance(i))
|
cryptonote::print_money(m_wallet->m_wallet->unlocked_balance(i))
|
||||||
|
Loading…
Reference in New Issue
Block a user