aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-09-09 16:03:47 +0200
committerselsta <selsta@sent.at>2019-09-09 16:03:47 +0200
commit7d3bba5ca0e30f199efbbdf89f7243588bdf1459 (patch)
tree6794e8bd36bc87172ef7348b58a13d562a0c6bb8 /src/wallet/api/wallet.cpp
parentMerge pull request #5876 (diff)
downloadmonero-7d3bba5ca0e30f199efbbdf89f7243588bdf1459.tar.xz
wallet2_api: add missing parameter
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index e632b8d23..7120485d5 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -993,12 +993,12 @@ void WalletImpl::setSubaddressLookahead(uint32_t major, uint32_t minor)
uint64_t WalletImpl::balance(uint32_t accountIndex) const
{
- return m_wallet->balance(accountIndex);
+ return m_wallet->balance(accountIndex, false);
}
uint64_t WalletImpl::unlockedBalance(uint32_t accountIndex) const
{
- return m_wallet->unlocked_balance(accountIndex);
+ return m_wallet->unlocked_balance(accountIndex, false);
}
uint64_t WalletImpl::blockChainHeight() const