Better handling of unexpected pool stats responses, add CKPool
This commit is contained in:
parent
10fe5b5053
commit
b7ff9d8101
10 changed files with 210 additions and 57 deletions
16
src/lib/mining_pool/ckpool/eu_ckpool.hpp
Normal file
16
src/lib/mining_pool/ckpool/eu_ckpool.hpp
Normal 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";
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue