Added benchmark support

This commit is contained in:
MoneroOcean 2019-07-21 22:31:52 -07:00
parent 9660dfc7b3
commit e6f199e4f4
18 changed files with 309 additions and 22 deletions

View file

@ -63,13 +63,15 @@ int xmrig::Controller::init()
return 0;
}
void xmrig::Controller::pre_start()
{
m_miner = new Miner(this);
}
void xmrig::Controller::start()
{
Base::start();
m_miner = new Miner(this);
network()->connect();
}