mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
may be important for pool op noobs who dunno what they do, doesn't setup blocknotify or have server efficiency issues.. squashed commit of today's commits, sorry for the mess ;) prevent job delays if no blocks were submitted double check coin id on blocknotify remove noblocknotify boolean prevent notify debuglog on normal blocks
110 lines
2.3 KiB
C++
110 lines
2.3 KiB
C++
|
|
class YAAMP_WORKER: public YAAMP_OBJECT
|
|
{
|
|
public:
|
|
int userid;
|
|
int workerid;
|
|
int coinid;
|
|
int remoteid;
|
|
|
|
bool valid;
|
|
bool extranonce1;
|
|
int32_t error_number;
|
|
|
|
uint32_t ntime;
|
|
double difficulty;
|
|
double share_diff; /* submitted hash diff */
|
|
};
|
|
|
|
inline void worker_delete(YAAMP_OBJECT *object)
|
|
{
|
|
YAAMP_WORKER *worker = (YAAMP_WORKER *)object;
|
|
delete worker;
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class YAAMP_SHARE: public YAAMP_OBJECT
|
|
{
|
|
public:
|
|
int jobid;
|
|
char extranonce2[64];
|
|
char ntime[32];
|
|
char nonce[64];
|
|
char nonce1[64];
|
|
};
|
|
|
|
inline void share_delete(YAAMP_OBJECT *object)
|
|
{
|
|
YAAMP_SHARE *share = (YAAMP_SHARE *)object;
|
|
delete share;
|
|
}
|
|
|
|
//YAAMP_WORKER *share_find_worker(int userid, int workerid, int coinid, bool valid);
|
|
//void share_add_worker(int userid, int workerid, int coinid, bool valid, double difficulty);
|
|
|
|
///////////
|
|
|
|
YAAMP_SHARE *share_find(int jobid, char *extranonce2, char *ntime, char *nonce, char *nonce1);
|
|
void share_add(YAAMP_CLIENT *client, YAAMP_JOB *job, bool valid, char *extranonce2, char *ntime, char *nonce, double share_diff, int error_number);
|
|
|
|
void share_write(YAAMP_DB *db);
|
|
void share_prune(YAAMP_DB *db);
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class YAAMP_BLOCK: public YAAMP_OBJECT
|
|
{
|
|
public:
|
|
time_t created;
|
|
bool confirmed;
|
|
bool segwit;
|
|
|
|
int userid;
|
|
int workerid;
|
|
int coinid;
|
|
int height;
|
|
|
|
double difficulty;
|
|
double difficulty_user;
|
|
|
|
char hash[1024];
|
|
char hash1[1024];
|
|
char hash2[1024];
|
|
};
|
|
|
|
inline void block_delete(YAAMP_OBJECT *object)
|
|
{
|
|
YAAMP_BLOCK *block = (YAAMP_BLOCK *)object;
|
|
delete block;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class YAAMP_SUBMIT: public YAAMP_OBJECT
|
|
{
|
|
public:
|
|
time_t created;
|
|
bool valid;
|
|
|
|
int remoteid;
|
|
double difficulty;
|
|
};
|
|
|
|
inline void submit_delete(YAAMP_OBJECT *object)
|
|
{
|
|
YAAMP_SUBMIT *submit = (YAAMP_SUBMIT *)object;
|
|
delete submit;
|
|
}
|
|
|
|
void block_prune(YAAMP_DB *db);
|
|
|
|
void block_add(int userid, int workerid, int coinid, int height, double diff, double diff_user, const char *hash1, const char *h2, int segwit);
|
|
bool block_confirm(int coinid, const char *hash);
|
|
|
|
YAAMP_SUBMIT *submit_add(int remoteid, double difficulty);
|
|
void submit_prune(YAAMP_DB *db);
|
|
|
|
|
|
|
|
|