summaryrefslogtreecommitdiffstats
path: root/executor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'executor.cpp')
-rw-r--r--executor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/executor.cpp b/executor.cpp
index 99f7ad5..0dd9cd7 100644
--- a/executor.cpp
+++ b/executor.cpp
@@ -122,7 +122,7 @@ void executor::sched_reconnect()
rt, int_port(iReconnectAttempts));
auto work = xmrstak::miner_work();
- xmrstak::GlobalStates::switch_work(work);
+ xmrstak::GlobalStates::inst().switch_work(work);
push_timed_event(ex_event(EV_RECONNECT, usr_pool_id), rt);
}
@@ -240,7 +240,7 @@ void executor::on_pool_have_job(size_t pool_id, pool_job& oPoolJob)
oWork.iTarget32 = oPoolJob.iTarget32;
- xmrstak::GlobalStates::switch_work(oWork);
+ xmrstak::GlobalStates::inst().switch_work(oWork);
if(pool_id == dev_pool_id)
return;
@@ -362,7 +362,7 @@ void executor::on_switch_pool(size_t pool_id)
oWork.iTarget32 = oPoolJob.iTarget32;
- xmrstak::GlobalStates::switch_work(oWork);
+ xmrstak::GlobalStates::inst().switch_work(oWork);
if(dev_pool->is_running())
push_timed_event(ex_event(EV_DEV_POOL_EXIT), 5);
OpenPOWER on IntegriCloud