mirror of
https://github.com/monero-project/monero.git
synced 2025-12-17 09:04:05 -05:00
Wallet API: added setRecoveringFromSeed();
This commit is contained in:
parent
0673db16ad
commit
a8cd65646c
3 changed files with 12 additions and 0 deletions
|
|
@ -416,6 +416,10 @@ void WalletImpl::setRefreshFromBlockHeight(uint64_t refresh_from_block_height)
|
|||
m_wallet->set_refresh_from_block_height(refresh_from_block_height);
|
||||
}
|
||||
|
||||
void WalletImpl::setRecoveringFromSeed(bool recoveringFromSeed)
|
||||
{
|
||||
m_recoveringFromSeed = recoveringFromSeed;
|
||||
}
|
||||
|
||||
uint64_t WalletImpl::balance() const
|
||||
{
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@ public:
|
|||
void setAutoRefreshInterval(int millis);
|
||||
int autoRefreshInterval() const;
|
||||
void setRefreshFromBlockHeight(uint64_t refresh_from_block_height);
|
||||
void setRecoveringFromSeed(bool recoveringFromSeed);
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue