wallet_api: add isDeterministic()

This commit is contained in:
tobtoht
2021-03-12 23:43:58 +01:00
parent b8f3e44a3f
commit 7c4e4c7603
3 changed files with 12 additions and 0 deletions

View File

@@ -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);