wallet api: add missing mining options

pull/95/head
Jaquee 7 years ago
parent beee286c7b
commit db1c7d80b1
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

@ -417,13 +417,15 @@ bool WalletManagerImpl::isMining() const
return mres.active;
}
bool WalletManagerImpl::startMining(const std::string &address, uint32_t threads)
bool WalletManagerImpl::startMining(const std::string &address, uint32_t threads, bool background_mining, bool ignore_battery)
{
cryptonote::COMMAND_RPC_START_MINING::request mreq;
cryptonote::COMMAND_RPC_START_MINING::response mres;
mreq.miner_address = address;
mreq.threads_count = threads;
mreq.ignore_battery = ignore_battery;
mreq.do_background_mining = background_mining;
if (!connect_and_invoke(m_daemonAddress, "/start_mining", mreq, mres))
return false;

@ -62,7 +62,7 @@ public:
void hardForkInfo(uint8_t &version, uint64_t &earliest_height) const;
uint64_t blockTarget() const;
bool isMining() const;
bool startMining(const std::string &address, uint32_t threads = 1);
bool startMining(const std::string &address, uint32_t threads = 1, bool background_mining = false, bool ignore_battery = true);
bool stopMining();
std::string resolveOpenAlias(const std::string &address, bool &dnssec_valid) const;

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

Loading…
Cancel
Save