aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/subaddress_account.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-09-14 13:23:28 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-09-14 13:23:28 -0500
commitdbe31f63e1c96e0f6ad57643ef57454986b5d336 (patch)
treea33043cb7499800f3d95b2cd6c174e7a25f3a88e /src/wallet/api/subaddress_account.cpp
parentMerge pull request #5898 (diff)
parentwallet2_api: add missing parameter (diff)
downloadmonero-dbe31f63e1c96e0f6ad57643ef57454986b5d336.tar.xz
Merge pull request #5899
7d3bba5 wallet2_api: add missing parameter (selsta)
Diffstat (limited to 'src/wallet/api/subaddress_account.cpp')
-rw-r--r--src/wallet/api/subaddress_account.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/subaddress_account.cpp b/src/wallet/api/subaddress_account.cpp
index 9bc9d1d91..eaaddc11f 100644
--- a/src/wallet/api/subaddress_account.cpp
+++ b/src/wallet/api/subaddress_account.cpp
@@ -64,8 +64,8 @@ void SubaddressAccountImpl::refresh()
i,
m_wallet->m_wallet->get_subaddress_as_str({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->unlocked_balance(i))
+ cryptonote::print_money(m_wallet->m_wallet->balance(i, false)),
+ cryptonote::print_money(m_wallet->m_wallet->unlocked_balance(i, false))
));
}
}