Merge pull request #7648
25e8254
expose set_offline to wallet api (benevanoff)
This commit is contained in:
commit
13418dbb98
|
@ -2308,6 +2308,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
|
||||
{
|
||||
|
|
|
@ -182,6 +182,8 @@ public:
|
|||
virtual bool setCacheAttribute(const std::string &key, const std::string &val) override;
|
||||
virtual std::string getCacheAttribute(const std::string &key) const override;
|
||||
|
||||
virtual void setOffline(bool offline) override;
|
||||
|
||||
virtual bool setUserNote(const std::string &txid, const std::string ¬e) override;
|
||||
virtual std::string getUserNote(const std::string &txid) const override;
|
||||
virtual std::string getTxKey(const std::string &txid) const override;
|
||||
|
|
|
@ -1014,6 +1014,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;
|
||||
|
|
Loading…
Reference in New Issue