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
+6
View File
@@ -1007,6 +1007,12 @@ struct Wallet
* \return true on success
*/
virtual bool rescanSpent() = 0;
/*
* \brief setOffline - toggle set offline on/off
* \param offline - true/false
*/
virtual void setOffline(bool offline) = 0;
//! blackballs a set of outputs
virtual bool blackballOutputs(const std::vector<std::string> &outputs, bool add) = 0;