Merge pull request #518

cf36420 mining: make threads parameter optional (Jaquee)
pull/2/head
Riccardo Spagni 7 years ago
commit afbfbeaa49
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -264,6 +264,8 @@ bool WalletManager::isMining() const
bool WalletManager::startMining(const QString &address, quint32 threads)
{
if(threads == 0)
threads = 1;
return m_pimpl->startMining(address.toStdString(), threads);
}