mirror of
https://git.btclock.dev/btclock/btclock_v3
synced 2025-04-23 01:01:21 +00:00
8 lines
232 B
C++
8 lines
232 B
C++
#include <array>
|
|
#include <string>
|
|
#include <cstdint>
|
|
#include "utils.hpp"
|
|
|
|
std::array<std::string, NUM_SCREENS> parseBitaxeHashRate(uint64_t hashrate);
|
|
std::array<std::string, NUM_SCREENS> parseBitaxeBestDiff(uint64_t difficulty);
|