Cryptocurrency mining pool written in C++ for speed. Supports Stratum.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
812 B

#ifndef STRATUM_JOB_H_
#define STRATUM_JOB_H_
#include "Bitcoin.h"
#include "Crypto.h"
#include "Util.h"
#include <set>
namespace Stratum
{
class Job
{
public:
uint64 diff;
Bitcoin::BlockPtr block;
BinaryData coinbase1;
BinaryData coinbase2;
std::set<std::string> shares;
// Submits share to a job
// Returns false if the same share already exists
bool SubmitShare(BinaryData share)
{
std::string sharestr = Util::BinToASCII(Crypto::SHA256(share));
std::set<std::string>::iterator it = shares.find(sharestr);
if (it == shares.end()) {
shares.insert(sharestr);
return true;
} else
return false;
}
};
}
#endif