aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authortobtoht <thotbot@protonmail.com>2021-03-12 23:43:58 +0100
committertobtoht <thotbot@protonmail.com>2021-03-12 23:43:58 +0100
commit7c4e4c7603d78439649d2095edc544bee4a7567b (patch)
tree7613fd625b8e3b862b9065681264b73c76ef4932 /src/wallet/api/wallet.cpp
parentMerge pull request #7381 (diff)
downloadmonero-7c4e4c7603d78439649d2095edc544bee4a7567b.tar.xz
wallet_api: add isDeterministic()
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index 4f923ce54..d06a11a64 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -2104,6 +2104,11 @@ bool WalletImpl::watchOnly() const
return m_wallet->watch_only();
}
+bool WalletImpl::isDeterministic() const
+{
+ return m_wallet->is_deterministic();
+}
+
void WalletImpl::clearStatus() const
{
boost::lock_guard<boost::mutex> l(m_statusMutex);