Merge pull request #357 from Low-power/kilohash-per-second-unit

Correct unit prefix symbol for unit `kilohash per second`
This commit is contained in:
SChernykh
2025-06-10 14:06:00 +02:00
committed by GitHub

View File

@@ -344,7 +344,7 @@ template<> struct log::Stream::Entry<Hashrate>
const double x = static_cast<double>(value.m_data);
static constexpr const char* units[] = { "H/s", "KH/s", "MH/s", "GH/s", "TH/s", "PH/s", "EH/s" };
static constexpr const char* units[] = { "H/s", "kH/s", "MH/s", "GH/s", "TH/s", "PH/s", "EH/s" };
int n;
char buf[32];