mirror of
https://git.btclock.dev/btclock/btclock_v3
synced 2025-08-27 14:59:31 +00:00
12 lines
420 B
C++
12 lines
420 B
C++
#include <array>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <utils.hpp>
|
|
|
|
#ifndef UNITY_TEST
|
|
#include "lib/mining_pool/mining_pool_interface.hpp"
|
|
#endif
|
|
|
|
std::array<std::string, NUM_SCREENS> parseMiningPoolStatsHashRate(const std::string& hashrate, const MiningPoolInterface& pool);
|
|
std::array<std::string, NUM_SCREENS> parseMiningPoolStatsDailyEarnings(int sats, std::string label, const MiningPoolInterface& pool);
|