Wallet API: added setRecoveringFromSeed();

This commit is contained in:
Jacob Brydolf 2016-10-10 19:34:25 +02:00
parent 0673db16ad
commit a8cd65646c
3 changed files with 12 additions and 0 deletions

View file

@ -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
{