diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-03-02 14:09:04 +0100 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-03-02 14:09:04 +0100 |
commit | db1c7d80b18e844206b8205a2eb60fbf60824662 (patch) | |
tree | cfd1b0ceece5f476cdba551be35f3541ffa66d16 /src/wallet/wallet2_api.h | |
parent | Merge pull request #1798 (diff) | |
download | monero-db1c7d80b18e844206b8205a2eb60fbf60824662.tar.xz |
wallet api: add missing mining options
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r-- | src/wallet/wallet2_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index eec4f8b8f..667093b32 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -696,7 +696,7 @@ struct WalletManager virtual bool isMining() const = 0; //! starts mining with the set number of threads - virtual bool startMining(const std::string &address, uint32_t threads = 1) = 0; + virtual bool startMining(const std::string &address, uint32_t threads = 1, bool background_mining = false, bool ignore_battery = true) = 0; //! stops mining virtual bool stopMining() = 0; |