expose set_offline to wallet api

This commit is contained in:
benevanoff
2021-04-05 13:41:04 -05:00
parent cb70ae9450
commit 25e82545f3
3 changed files with 12 additions and 0 deletions

View File

@@ -2305,6 +2305,10 @@ bool WalletImpl::rescanSpent()
return true;
}
void WalletImpl::setOffline(bool offline)
{
m_wallet->set_offline(offline);
}
void WalletImpl::hardForkInfo(uint8_t &version, uint64_t &earliest_height) const
{