Skip to content

Commit

Permalink
Merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MoneroOcean committed Nov 4, 2024
1 parent a81b3cc commit 6d866cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/MoBenchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ void MoBenchmark::onJobResult(const JobResult& result) {
if (!hr) continue;
auto hr_pair = hr->calc(Hashrate::ShortInterval);
if (hr_pair.first) t[0] += hr_pair.second;
hr_pair = hr->calc(Hashrate::MediumInterval)
hr_pair = hr->calc(Hashrate::MediumInterval);
if (hr_pair.first) t[1] += hr_pair.second;
hr_pair = hr->calc(Hashrate::LargeInterval)
hr_pair = hr->calc(Hashrate::LargeInterval);
if (hr_pair.first) t[2] += hr_pair.second;
}
double hashrate = 0.0f;
Expand Down

0 comments on commit 6d866cb

Please sign in to comment.