From 976c3c2e76cc671488e33ba882ce63b301b50eff Mon Sep 17 00:00:00 2001 From: Tony Butler Date: Wed, 29 May 2024 08:05:09 -0600 Subject: [PATCH] MoBenchmark: restore listener at the end of finish() --- src/core/MoBenchmark.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/MoBenchmark.cpp b/src/core/MoBenchmark.cpp index 471b754a..cbb1e493 100644 --- a/src/core/MoBenchmark.cpp +++ b/src/core/MoBenchmark.cpp @@ -56,6 +56,7 @@ void MoBenchmark::finish() { LOG_INFO("%s " BRIGHT_BLACK_BG(CYAN_BOLD_S " ALGO PERFORMANCE CALIBRATION COMPLETE "), Tags::benchmark()); m_controller->miner()->pause(); // do not compute anything before job from the pool JobResults::stop(); + JobResults::setListener(m_controller->network(), m_controller->config()->cpu().isHwAES()); m_controller->start(); }