mirror of
https://git.btclock.dev/btclock/btclock_v3
synced 2025-08-28 15:29:25 +00:00
9 lines
367 B
C++
9 lines
367 B
C++
![]() |
#include <array>
|
||
|
#include <string>
|
||
|
#ifndef UNITY_TEST
|
||
|
#include "lib/mining_pool/mining_pool_interface.hpp"
|
||
|
#endif
|
||
|
|
||
|
std::array<std::string, NUM_SCREENS> parseMiningPoolStatsHashRate(std::string text, const MiningPoolInterface& pool);
|
||
|
std::array<std::string, NUM_SCREENS> parseMiningPoolStatsDailyEarnings(int sats, std::string label, const MiningPoolInterface& pool);
|