mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
wallet_api: add isDeterministic()
This commit is contained in:
parent
b8f3e44a3f
commit
7c4e4c7603
@ -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);
|
||||
|
@ -129,6 +129,7 @@ public:
|
||||
void setRecoveringFromDevice(bool recoveringFromDevice) override;
|
||||
void setSubaddressLookahead(uint32_t major, uint32_t minor) override;
|
||||
bool watchOnly() const override;
|
||||
bool isDeterministic() const override;
|
||||
bool rescanSpent() override;
|
||||
NetworkType nettype() const override {return static_cast<NetworkType>(m_wallet->nettype());}
|
||||
void hardForkInfo(uint8_t &version, uint64_t &earliest_height) const override;
|
||||
|
@ -626,6 +626,12 @@ struct Wallet
|
||||
*/
|
||||
virtual bool watchOnly() const = 0;
|
||||
|
||||
/**
|
||||
* @brief isDeterministic - checks if wallet keys are deterministic
|
||||
* @return - true if deterministic
|
||||
*/
|
||||
virtual bool isDeterministic() const = 0;
|
||||
|
||||
/**
|
||||
* @brief blockChainHeight - returns current blockchain height
|
||||
* @return
|
||||
|
Loading…
Reference in New Issue
Block a user