Merge pull request #2232

87b5ede9 miner: fix ignoring battery from command line (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2017-08-15 20:45:02 +02:00
commit da2c662cf2
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -382,7 +382,7 @@ namespace cryptonote
boost::thread::attributes attrs;
attrs.set_stack_size(THREAD_STACK_SIZE);
start(m_mine_address, m_threads_total, attrs, get_is_background_mining_enabled());
start(m_mine_address, m_threads_total, attrs, get_is_background_mining_enabled(), get_ignore_battery());
}
}
//-----------------------------------------------------------------------------------------------------