Better handling of unexpected pool stats responses, add CKPool

This commit is contained in:
Djuri 2024-12-28 13:40:08 +01:00
parent 10fe5b5053
commit b7ff9d8101
10 changed files with 210 additions and 57 deletions

View file

@ -0,0 +1,16 @@
#pragma once
#include "ckpool.hpp"
class EUCKPool : public CKPool {
public:
std::string getDisplayLabel() const override { return "CK/POOL"; }
std::string getPoolName() const override {
return "eu_ckpool";
}
protected:
std::string getBaseUrl() const override {
return "https://eusolo.ckpool.org";
}
};