minor fixes
This commit is contained in:
parent
0aabedcbd1
commit
444f9f26e7
@ -47,6 +47,8 @@ If you want you can compile the entire project using Arduino, PlatformIO or Expr
|
|||||||
After programming, you will only need to setup your Wifi and BTC address.
|
After programming, you will only need to setup your Wifi and BTC address.
|
||||||
|
|
||||||
1. Connect to NerdMinerAP
|
1. Connect to NerdMinerAP
|
||||||
|
- AP: NerdMinerAP
|
||||||
|
- PASS: MineYourCoins
|
||||||
1. Setup your Wifi Network
|
1. Setup your Wifi Network
|
||||||
1. Add your BTCaddress
|
1. Add your BTCaddress
|
||||||
|
|
||||||
@ -76,10 +78,14 @@ Optional you can select other pool:
|
|||||||
- [x] Bug memory leaks
|
- [x] Bug memory leaks
|
||||||
- [x] Bug Reboots when received JSON contains some null values
|
- [x] Bug Reboots when received JSON contains some null values
|
||||||
- [x] Implement midstate sha256
|
- [x] Implement midstate sha256
|
||||||
|
- [x] Bug Wificlient DNS unresolved on Wifi.h
|
||||||
- [ ] Code refactoring
|
- [ ] Code refactoring
|
||||||
- [ ] Add blockHeight to screen
|
- [ ] Add blockHeight to screen
|
||||||
- [ ] Add clock to show current time
|
- [ ] Add clock to show current time
|
||||||
- [ ] Add new screen with global mining stats
|
- [ ] Add new screen with global mining stats
|
||||||
- [ ] Add support to control BM1397
|
- [ ] Add support to control BM1397
|
||||||
|
|
||||||
|
### Donations/Project contributions
|
||||||
|
If you would like to contribute and help dev team with this project you can send a donation to the following LN address ⚡teamnerdminer@getalby.com⚡
|
||||||
|
|
||||||
Enjoy
|
Enjoy
|
@ -121,6 +121,6 @@ void loop() {
|
|||||||
checkResetConfigButton();
|
checkResetConfigButton();
|
||||||
|
|
||||||
//Run miner on main core when there is time --Currently on test
|
//Run miner on main core when there is time --Currently on test
|
||||||
runMiner();
|
// runMiner();
|
||||||
|
|
||||||
}
|
}
|
251
src/mining.cpp
251
src/mining.cpp
@ -11,10 +11,13 @@
|
|||||||
#include "mining.h"
|
#include "mining.h"
|
||||||
|
|
||||||
#define TARGET_BUFFER_SIZE 64
|
#define TARGET_BUFFER_SIZE 64
|
||||||
|
#define BUFFER_JSON_DOC 4096
|
||||||
|
|
||||||
unsigned long templates = 0;
|
unsigned long templates = 0;
|
||||||
unsigned long hashes= 0;
|
unsigned long hashes= 0;
|
||||||
unsigned long Mhashes = 0;
|
unsigned long Mhashes = 0;
|
||||||
|
unsigned long totalKHashes = 0;
|
||||||
|
unsigned long mStart = millis();
|
||||||
|
|
||||||
int halfshares; // increase if blockhash has 16 bits of zeroes
|
int halfshares; // increase if blockhash has 16 bits of zeroes
|
||||||
int shares; // increase if blockhash has 32 bits of zeroes
|
int shares; // increase if blockhash has 32 bits of zeroes
|
||||||
@ -79,11 +82,43 @@ int to_byte_array(const char *in, size_t in_size, uint8_t *out) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool verifyPayload (String line){
|
unsigned long getNextId(unsigned long id) {
|
||||||
String inData=line;
|
if (id == ULONG_MAX) {
|
||||||
if(inData.length() == 0) return false;
|
id = 1;
|
||||||
inData.trim();
|
return id;
|
||||||
if(inData.isEmpty()) return false;
|
}
|
||||||
|
return ++id;
|
||||||
|
}
|
||||||
|
|
||||||
|
void getNextExtranonce2(int extranonce2_size, char *extranonce2) {
|
||||||
|
|
||||||
|
unsigned long extranonce2_number = strtoul(extranonce2, NULL, 10);
|
||||||
|
extranonce2_number++;
|
||||||
|
|
||||||
|
memset(extranonce2, '0', 2 * extranonce2_size);
|
||||||
|
if (extranonce2_number > long(pow(10, 2 * extranonce2_size))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
char next_extranounce2[2 * extranonce2_size + 1];
|
||||||
|
memset(extranonce2, '0', 2 * extranonce2_size);
|
||||||
|
ultoa(extranonce2_number, next_extranounce2, 10);
|
||||||
|
memcpy(extranonce2 + (2 * extranonce2_size) - long(log10(extranonce2_number)) - 1 , next_extranounce2, strlen(next_extranounce2));
|
||||||
|
extranonce2[2 * extranonce2_size] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool verifyPayload (String* line){
|
||||||
|
if(line->length() == 0) return false;
|
||||||
|
line->trim();
|
||||||
|
if(line->isEmpty()) return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool checkError(const StaticJsonDocument<BUFFER_JSON_DOC> doc) {
|
||||||
|
if (doc["error"].size() == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Serial.printf("ERROR: %d | reason: %s \n", (const int) doc["error"][0], (const char*) doc["error"][1]);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,68 +128,97 @@ void runWorker(void *name) {
|
|||||||
|
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.printf("\n[WORKER] Started. Running %s on core %d\n", (char *)name, xPortGetCoreID());
|
Serial.printf("\n[WORKER] Started. Running %s on core %d\n", (char *)name, xPortGetCoreID());
|
||||||
Serial.printf("### [Total Heap / Free heap]: %d / %d \n", ESP.getHeapSize(), ESP.getFreeHeap());
|
|
||||||
|
|
||||||
String ADDRESS = String(btcString);
|
#ifdef DEBUG_MEMORY
|
||||||
|
Serial.printf("### [Total Heap / Free heap]: %d / %d \n", ESP.getHeapSize(), ESP.getFreeHeap());
|
||||||
|
#endif
|
||||||
|
|
||||||
// connect to pool
|
// connect to pool
|
||||||
WiFiClient client;
|
WiFiClient client;
|
||||||
|
IPAddress serverIP; //Temporally save poolIPaddres
|
||||||
|
bool isMinerSuscribed = false;
|
||||||
bool continueSecuence = false;
|
bool continueSecuence = false;
|
||||||
String line, extranonce1;
|
String line, extranonce1, extranonce2 = String("0");
|
||||||
unsigned long id = 1;
|
unsigned long id = 0, extranonce_number = 0;
|
||||||
unsigned int extranonce2_size;
|
unsigned int extranonce2_size;
|
||||||
|
|
||||||
while(true) {
|
while(true) {
|
||||||
|
|
||||||
if(WiFi.status() != WL_CONNECTED) continue;
|
if(WiFi.status() != WL_CONNECTED){
|
||||||
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||||
// get template
|
|
||||||
DynamicJsonDocument doc(4 * 1024);
|
|
||||||
String payload;
|
|
||||||
|
|
||||||
if (!client.connect(poolString, portNumber)) {
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// STEP 1: Pool server connection
|
|
||||||
payload = "{\"id\": "+ String(id++) +", \"method\": \"mining.subscribe\", \"params\": [\"" + ADDRESS + "\", \"password\"]}\n";
|
// get template
|
||||||
|
StaticJsonDocument<BUFFER_JSON_DOC> doc;
|
||||||
|
|
||||||
|
char payload[BUFFER_JSON_DOC] = {0};
|
||||||
|
|
||||||
|
if (!client.connected()) {
|
||||||
|
isMinerSuscribed = false;
|
||||||
|
Serial.println("Client not connected, trying to connect...");
|
||||||
|
if (!client.connect(serverIP, portNumber)) {
|
||||||
|
Serial.println("Imposible to connect to : " + String(poolString));
|
||||||
|
WiFi.hostByName(poolString, serverIP);
|
||||||
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// STEP 1: Pool server connection (SUBSCRIBE)
|
||||||
|
// Docs:
|
||||||
|
// - https://cs.braiins.com/stratum-v1/docs
|
||||||
|
// - https://github.com/aeternity/protocol/blob/master/STRATUM.md#mining-subscribe
|
||||||
|
if(!isMinerSuscribed){
|
||||||
|
id = getNextId(id);
|
||||||
|
sprintf(payload, "{\"id\": %u, \"method\": \"mining.subscribe\", \"params\": [\"NerdMinerV2\"]}\n", id);
|
||||||
Serial.printf("[WORKER] %s ==> Mining subscribe\n", (char *)name);
|
Serial.printf("[WORKER] %s ==> Mining subscribe\n", (char *)name);
|
||||||
Serial.print(" Sending : "); Serial.println(payload);
|
Serial.print(" Sending : "); Serial.println(payload);
|
||||||
client.print(payload.c_str());
|
client.print(payload);
|
||||||
line = client.readStringUntil('\n');
|
line = client.readStringUntil('\n');
|
||||||
if(!verifyPayload(line)) return;
|
if(!verifyPayload(&line)) continue;
|
||||||
Serial.print(" Receiving: "); Serial.println(line);
|
Serial.print(" Receiving: "); Serial.println(line);
|
||||||
deserializeJson(doc, line);
|
deserializeJson(doc, line);
|
||||||
int error = doc["error"];
|
if (checkError(doc)) {
|
||||||
|
Serial.printf("[WORKER] %s >>>>>>>>> Work aborted\n", (char *)name);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
String sub_details = String((const char*) doc["result"][0][0][1]);
|
String sub_details = String((const char*) doc["result"][0][0][1]);
|
||||||
extranonce1 = String((const char*) doc["result"][1]);
|
extranonce1 = String((const char*) doc["result"][1]);
|
||||||
int extranonce2_size = doc["result"][2];
|
int extranonce2_size = doc["result"][2];
|
||||||
|
|
||||||
// DIFFICULTY
|
// DIFFICULTY
|
||||||
line = client.readStringUntil('\n');
|
line = client.readStringUntil('\n');
|
||||||
|
Serial.print(" Receiving: "); Serial.println(line);
|
||||||
Serial.print(" sub_details: "); Serial.println(sub_details);
|
Serial.print(" sub_details: "); Serial.println(sub_details);
|
||||||
Serial.print(" extranonce1: "); Serial.println(extranonce1);
|
Serial.print(" extranonce1: "); Serial.println(extranonce1);
|
||||||
Serial.print(" extranonce2_size: "); Serial.println(extranonce2_size);
|
Serial.print(" extranonce2_size: "); Serial.println(extranonce2_size);
|
||||||
Serial.print(" error: "); Serial.println(error);
|
|
||||||
if((extranonce1.length() == 0) || line.length() == 0 || (error != 0)) {
|
if((extranonce1.length() == 0) || line.length() == 0) {
|
||||||
Serial.printf("[WORKER] %s >>>>>>>>> Work aborted\n", (char *)name);
|
Serial.printf("[WORKER] %s >>>>>>>>> Work aborted\n", (char *)name);
|
||||||
Serial.printf("extranonce1 length: %u | line2 length: %u | error code: %u \n", extranonce1.length(), line.length(), error);
|
Serial.printf("extranonce1 length: %u | line2 length: %u \n", extranonce1.length(), line.length());
|
||||||
client.stop();
|
client.stop();
|
||||||
doc.clear();
|
doc.clear();
|
||||||
doc.garbageCollect();
|
doc.garbageCollect();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
isMinerSuscribed=true;
|
||||||
|
}
|
||||||
|
|
||||||
// STEP 2: Pool authorize work
|
// STEP 2: Pool authorize work (Block Info)
|
||||||
payload = "{\"params\": [\"" + ADDRESS + "\", \"password\"], \"id\": "+ String(id++) +", \"method\": \"mining.authorize\"}\n";
|
id = getNextId(id);
|
||||||
|
sprintf(payload, "{\"params\": [\"%s\", \"x\"], \"id\": %u, \"method\": \"mining.authorize\"}\n",
|
||||||
|
btcString,
|
||||||
|
id);
|
||||||
Serial.printf("[WORKER] %s ==> Autorize work\n", (char *)name);
|
Serial.printf("[WORKER] %s ==> Autorize work\n", (char *)name);
|
||||||
Serial.print(" Sending : "); Serial.println(payload);
|
Serial.print(" Sending : "); Serial.println(payload);
|
||||||
client.print(payload.c_str());
|
client.print(payload);
|
||||||
line = client.readStringUntil('\n');
|
line = client.readStringUntil('\n');
|
||||||
if(!verifyPayload(line)) return;
|
if(!verifyPayload(&line)) continue;
|
||||||
Serial.print(" Receiving: "); Serial.println(line);
|
Serial.print(" Receiving: "); Serial.println(line);
|
||||||
Serial.print(" Receiving: "); Serial.println(client.readStringUntil('\n'));
|
Serial.print(" Receiving: "); Serial.println(client.readStringUntil('\n'));
|
||||||
Serial.print(" Receiving: "); Serial.println(client.readStringUntil('\n'));
|
Serial.print(" Receiving: "); Serial.println(client.readStringUntil('\n'));
|
||||||
client.stop();
|
// client.stop();
|
||||||
|
|
||||||
deserializeJson(doc, line);
|
deserializeJson(doc, line);
|
||||||
String job_id = String((const char*) doc["params"][0]);
|
String job_id = String((const char*) doc["params"][0]);
|
||||||
@ -179,15 +243,11 @@ void runWorker(void *name) {
|
|||||||
Serial.print(" clean_jobs: "); Serial.println(clean_jobs);
|
Serial.print(" clean_jobs: "); Serial.println(clean_jobs);
|
||||||
#endif
|
#endif
|
||||||
//Check if parameters where correctly received
|
//Check if parameters where correctly received
|
||||||
if((job_id.length() == 0)||(prevhash.length() == 0)||(coinb2.length() == 0)||(ntime.length() == 0)) {
|
if (checkError(doc)) {
|
||||||
Serial.println(">>>>>>>>> Worker aborted");
|
Serial.printf("[WORKER] %s >>>>>>>>> Work aborted\n", (char *)name);
|
||||||
client.stop();
|
|
||||||
doc.clear();
|
|
||||||
doc.garbageCollect();
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
doc.clear();
|
|
||||||
templates++;
|
templates++;
|
||||||
|
|
||||||
// calculate target - target = (nbits[2:]+'00'*(int(nbits[:2],16) - 3)).zfill(64)
|
// calculate target - target = (nbits[2:]+'00'*(int(nbits[:2],16) - 3)).zfill(64)
|
||||||
@ -196,7 +256,7 @@ void runWorker(void *name) {
|
|||||||
memset(target, '0', TARGET_BUFFER_SIZE);
|
memset(target, '0', TARGET_BUFFER_SIZE);
|
||||||
int zeros = (int) strtol(nbits.substring(0, 2).c_str(), 0, 16) - 3;
|
int zeros = (int) strtol(nbits.substring(0, 2).c_str(), 0, 16) - 3;
|
||||||
memcpy(target + zeros - 2, nbits.substring(2).c_str(), nbits.length() - 2);
|
memcpy(target + zeros - 2, nbits.substring(2).c_str(), nbits.length() - 2);
|
||||||
target[TARGET_BUFFER_SIZE+1] = 0;
|
target[TARGET_BUFFER_SIZE] = 0;
|
||||||
Serial.print(" target: "); Serial.println(target);
|
Serial.print(" target: "); Serial.println(target);
|
||||||
// bytearray target
|
// bytearray target
|
||||||
uint8_t bytearray_target[32];
|
uint8_t bytearray_target[32];
|
||||||
@ -214,30 +274,15 @@ void runWorker(void *name) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// get extranonce2 - extranonce2 = hex(random.randint(0,2**32-1))[2:].zfill(2*extranonce2_size)
|
// get extranonce2 - extranonce2 = hex(random.randint(0,2**32-1))[2:].zfill(2*extranonce2_size)
|
||||||
uint32_t extranonce2_a_bin = esp_random();
|
char extranonce2_char[2 * extranonce2_size+1];
|
||||||
uint32_t extranonce2_b_bin = esp_random();
|
extranonce2.toCharArray(extranonce2_char, 2 * extranonce2_size + 1);
|
||||||
String extranonce2_a = String(extranonce2_a_bin, HEX);
|
getNextExtranonce2(extranonce2_size, extranonce2_char);
|
||||||
String extranonce2_b = String(extranonce2_b_bin, HEX);
|
//extranonce2 = String(extranonce2_char);
|
||||||
uint8_t pad = 8 - extranonce2_a.length();
|
extranonce2 = "00000002";
|
||||||
char extranonce2_a_char[pad+1];
|
|
||||||
for (int k = 0; k < pad; k++) {
|
|
||||||
extranonce2_a_char[k] = '0';
|
|
||||||
}
|
|
||||||
extranonce2_a_char[pad+1] = 0;
|
|
||||||
extranonce2_a = String(extranonce2_a_char) + extranonce2_a;
|
|
||||||
|
|
||||||
pad = 8 - extranonce2_b.length();
|
|
||||||
char extranonce2_b_char[pad+1];
|
|
||||||
for (int k = 0; k < pad; k++) {
|
|
||||||
extranonce2_b_char[k] = '0';
|
|
||||||
}
|
|
||||||
|
|
||||||
extranonce2_b_char[pad+1] = 0;
|
|
||||||
extranonce2_b = String(extranonce2_b_char) + extranonce2_b;
|
|
||||||
|
|
||||||
String extranonce2 = String(extranonce2_a + extranonce2_b).substring(0, 17 - (2 * extranonce2_size));
|
|
||||||
//get coinbase - coinbase_hash_bin = hashlib.sha256(hashlib.sha256(binascii.unhexlify(coinbase)).digest()).digest()
|
//get coinbase - coinbase_hash_bin = hashlib.sha256(hashlib.sha256(binascii.unhexlify(coinbase)).digest()).digest()
|
||||||
String coinbase = coinb1 + extranonce1 + extranonce2 + coinb2;
|
String coinbase = coinb1 + extranonce1 + extranonce2 + coinb2;
|
||||||
|
Serial.print(" coinbase: "); Serial.println(coinbase);
|
||||||
size_t str_len = coinbase.length()/2;
|
size_t str_len = coinbase.length()/2;
|
||||||
uint8_t bytearray[str_len];
|
uint8_t bytearray[str_len];
|
||||||
|
|
||||||
@ -330,7 +375,8 @@ void runWorker(void *name) {
|
|||||||
Serial.println("");
|
Serial.println("");
|
||||||
|
|
||||||
// calculate blockheader
|
// calculate blockheader
|
||||||
String blockheader = version + prevhash + String(merkle_root) + nbits + ntime + "00000000";
|
// j.block_header = ''.join([j.version, j.prevhash, merkle_root, j.ntime, j.nbits])
|
||||||
|
String blockheader = version + prevhash + String(merkle_root) + ntime + nbits + "00000000";
|
||||||
str_len = blockheader.length()/2;
|
str_len = blockheader.length()/2;
|
||||||
uint8_t bytearray_blockheader[str_len];
|
uint8_t bytearray_blockheader[str_len];
|
||||||
res = to_byte_array(blockheader.c_str(), str_len*2, bytearray_blockheader);
|
res = to_byte_array(blockheader.c_str(), str_len*2, bytearray_blockheader);
|
||||||
@ -373,30 +419,35 @@ void runWorker(void *name) {
|
|||||||
for (size_t i = 0; i < 4; i++)
|
for (size_t i = 0; i < 4; i++)
|
||||||
Serial.printf("%02x", bytearray_blockheader[i]);
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.println("version");
|
Serial.print("version ");
|
||||||
for (size_t i = 0; i < 4; i++)
|
for (size_t i = 0; i < 4; i++)
|
||||||
Serial.printf("%02x", bytearray_blockheader[i]);
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.println("prev hash");
|
Serial.print("prev hash ");
|
||||||
for (size_t i = 4; i < 4+32; i++)
|
for (size_t i = 4; i < 4+32; i++)
|
||||||
Serial.printf("%02x", bytearray_blockheader[i]);
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.println("merkle root");
|
Serial.print("merkle root ");
|
||||||
for (size_t i = 36; i < 36+32; i++)
|
for (size_t i = 36; i < 36+32; i++)
|
||||||
Serial.printf("%02x", bytearray_blockheader[i]);
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.println("time");
|
Serial.print("nbits ");
|
||||||
for (size_t i = 68; i < 68+4; i++)
|
for (size_t i = 68; i < 68+4; i++)
|
||||||
Serial.printf("%02x", bytearray_blockheader[i]);
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.println("difficulty");
|
Serial.print("difficulty ");
|
||||||
for (size_t i = 72; i < 72+4; i++)
|
for (size_t i = 72; i < 72+4; i++)
|
||||||
Serial.printf("%02x", bytearray_blockheader[i]);
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.println("nonce");
|
Serial.print("nonce ");
|
||||||
for (size_t i = 76; i < 76+4; i++)
|
for (size_t i = 76; i < 76+4; i++)
|
||||||
Serial.printf("%02x", bytearray_blockheader[i]);
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
|
Serial.println("bytearray_blockheader: ");
|
||||||
|
for (size_t i = 0; i < str_len; i++) {
|
||||||
|
Serial.printf("%02x", bytearray_blockheader[i]);
|
||||||
|
}
|
||||||
|
Serial.println("");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
mbedtls_sha256_context midstate[32];
|
mbedtls_sha256_context midstate[32];
|
||||||
@ -409,26 +460,14 @@ void runWorker(void *name) {
|
|||||||
|
|
||||||
// search a valid nonce
|
// search a valid nonce
|
||||||
enableGlobalHash = true;
|
enableGlobalHash = true;
|
||||||
uint32_t nonce = 0;
|
|
||||||
|
unsigned long nonce = TARGET_NONCE - MAX_NONCE;
|
||||||
uint32_t startT = micros();
|
uint32_t startT = micros();
|
||||||
unsigned char *header64 = bytearray_blockheader + 64;
|
unsigned char *header64 = bytearray_blockheader + 64;
|
||||||
Serial.println(">>> STARTING TO HASH NONCES");
|
Serial.println(">>> STARTING TO HASH NONCES");
|
||||||
while(true) {
|
while(true) {
|
||||||
memcpy(bytearray_blockheader + 77, &nonce, 3);
|
memcpy(bytearray_blockheader + 77, &nonce, 3);
|
||||||
|
|
||||||
// double sha
|
|
||||||
// Sin midstate
|
|
||||||
/*mbedtls_sha256_starts_ret(&ctx,0);
|
|
||||||
mbedtls_sha256_update_ret(&ctx, bytearray_blockheader, 80);
|
|
||||||
mbedtls_sha256_finish_ret(&ctx, interResult);
|
|
||||||
|
|
||||||
mbedtls_sha256_starts_ret(&ctx,0);
|
|
||||||
mbedtls_sha256_update_ret(&ctx, interResult, 32);
|
|
||||||
mbedtls_sha256_finish_ret(&ctx, shaResult);
|
|
||||||
for (size_t i = 0; i < 32; i++)
|
|
||||||
Serial.printf("%02x", shaResult[i]);
|
|
||||||
Serial.println("");*/
|
|
||||||
|
|
||||||
//Con midstate
|
//Con midstate
|
||||||
// Primer SHA-256
|
// Primer SHA-256
|
||||||
mbedtls_sha256_clone(&ctx, midstate); //Clonamos el contexto anterior para continuar el SHA desde allí
|
mbedtls_sha256_clone(&ctx, midstate); //Clonamos el contexto anterior para continuar el SHA desde allí
|
||||||
@ -444,20 +483,17 @@ void runWorker(void *name) {
|
|||||||
Serial.println(""); */
|
Serial.println(""); */
|
||||||
|
|
||||||
hashes++;
|
hashes++;
|
||||||
if (nonce++> MAX_NONCE) break; //exit
|
if (nonce++> TARGET_NONCE) break; //exit
|
||||||
|
|
||||||
// check if 16bit share
|
// check if 16bit share
|
||||||
if(hash[31]!=0) continue;
|
if(hash[31] !=0 || hash[30] !=0) continue;
|
||||||
if(hash[30]!=0) continue;
|
|
||||||
halfshares++;
|
halfshares++;
|
||||||
// check if 32bit share
|
// check if 32bit share
|
||||||
if(hash[29]!=0) continue;
|
if(hash[29] !=0 || hash[28] !=0) continue;
|
||||||
if(hash[28]!=0) continue;
|
|
||||||
shares++;
|
shares++;
|
||||||
|
|
||||||
// check if valid header
|
// check if valid header
|
||||||
if(checkValid(hash, bytearray_target)){
|
if(checkValid(hash, bytearray_target)){
|
||||||
//Serial.printf("%s on core %d: ", (char *)name, xPortGetCoreID());
|
|
||||||
Serial.printf("[WORKER] %s CONGRATULATIONS! Valid completed with nonce: %d | 0x%x\n", (char *)name, nonce, nonce);
|
Serial.printf("[WORKER] %s CONGRATULATIONS! Valid completed with nonce: %d | 0x%x\n", (char *)name, nonce, nonce);
|
||||||
valids++;
|
valids++;
|
||||||
Serial.printf("[WORKER] %s Submiting work valid!\n", (char *)name);
|
Serial.printf("[WORKER] %s Submiting work valid!\n", (char *)name);
|
||||||
@ -466,11 +502,18 @@ void runWorker(void *name) {
|
|||||||
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||||
}
|
}
|
||||||
// STEP 3: Submit mining job
|
// STEP 3: Submit mining job
|
||||||
payload = "{\"params\": [\"" + ADDRESS + "\", \"" + job_id + "\", \"" + extranonce2 + "\", \"" + ntime + "\", \"" + String(nonce, HEX) + "\"], \"id\": "+ String(id++) +", \"method\": \"mining.submit\"}";
|
id = getNextId(id);
|
||||||
|
sprintf(payload, "{\"params\": [\"%s\",\"%s\",\"%s\",\"%s\",\"%s\"], \"id\": %u, \"method\": \"mining.submit\"}",
|
||||||
|
btcString,
|
||||||
|
job_id,
|
||||||
|
extranonce2,
|
||||||
|
ntime,
|
||||||
|
String(nonce, HEX),
|
||||||
|
id
|
||||||
|
);
|
||||||
Serial.print(" Sending : "); Serial.println(payload);
|
Serial.print(" Sending : "); Serial.println(payload);
|
||||||
client.print(payload.c_str());
|
client.print(payload);
|
||||||
line = client.readStringUntil('\n');
|
Serial.print(" Receiving: "); Serial.println(client.readString());
|
||||||
Serial.print(" Receiving: "); Serial.println(line);
|
|
||||||
client.stop();
|
client.stop();
|
||||||
// exit
|
// exit
|
||||||
nonce = MAX_NONCE;
|
nonce = MAX_NONCE;
|
||||||
@ -482,22 +525,9 @@ void runWorker(void *name) {
|
|||||||
mbedtls_sha256_free(midstate);
|
mbedtls_sha256_free(midstate);
|
||||||
enableGlobalHash = false;
|
enableGlobalHash = false;
|
||||||
|
|
||||||
|
// TODO Pending doub
|
||||||
if(hashes>=MAX_NONCE) { Mhashes=Mhashes+MAX_NONCE/1000000; hashes=hashes-MAX_NONCE;}
|
if(hashes>=MAX_NONCE) { Mhashes=Mhashes+MAX_NONCE/1000000; hashes=hashes-MAX_NONCE;}
|
||||||
|
|
||||||
if (nonce == MAX_NONCE) {
|
|
||||||
Serial.printf("[WORKER] %s SUBMITING WORK... MAX Nonce reached > MAX_NONCE\n", (char *)name);
|
|
||||||
// STEP 3: Submit mining job
|
|
||||||
if (client.connect(poolString, portNumber)) {
|
|
||||||
payload = "{\"params\": [\"" + ADDRESS + "\", \"" + job_id + "\", \"" + extranonce2 + "\", \"" + ntime + "\", \"" + String(nonce, HEX) + "\"], \"id\": "+ String(id++) +", \"method\": \"mining.submit\"}";
|
|
||||||
Serial.print(" Sending : "); Serial.println(payload);
|
|
||||||
client.print(payload.c_str());
|
|
||||||
Serial.print(" Receiving: "); Serial.println(client.readStringUntil('\n'));
|
|
||||||
while (client.available()) {
|
|
||||||
Serial.print(" Receiving: "); Serial.println(client.readStringUntil('\n'));
|
|
||||||
}
|
|
||||||
client.stop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
uint32_t duration = micros() - startT;
|
uint32_t duration = micros() - startT;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -547,17 +577,18 @@ void runMiner(void){
|
|||||||
|
|
||||||
void runMonitor(void *name){
|
void runMonitor(void *name){
|
||||||
|
|
||||||
Serial.println("[MONITOR] started");
|
// Serial.println("[MONITOR] started");
|
||||||
|
|
||||||
unsigned long mStart = millis();
|
|
||||||
while(1){
|
//while(1){
|
||||||
background.pushImage(0, 0, MinerWidth, MinerHeight, MinerScreen);
|
background.pushImage(0, 0, MinerWidth, MinerHeight, MinerScreen);
|
||||||
|
|
||||||
unsigned long mElapsed = millis()-mStart;
|
unsigned long mElapsed = millis()-mStart;
|
||||||
unsigned long totalKHashes = (Mhashes*1000) + hashes/1000;
|
unsigned long totalKHashes = (Mhashes*1000) + hashes/1000 - totalKHashes;
|
||||||
//Serial.println("[runMonitor Task] -> Printing results on screen ");
|
//Serial.println("[runMonitor Task] -> Printing results on screen ");
|
||||||
Serial.printf(">>> Completed %d share(s), %d Khashes, avg. hashrate %.3f KH/s\n",
|
|
||||||
shares, totalKHashes, (1.0*(totalKHashes*1000))/mElapsed);
|
// Serial.printf(">>> Completed %d share(s), %d Khashes, avg. hashrate %.3f KH/s\n",
|
||||||
|
// shares, totalKHashes, (1.0*(totalKHashes*1000))/mElapsed);
|
||||||
|
|
||||||
//Hashrate
|
//Hashrate
|
||||||
render.setFontSize(70);
|
render.setFontSize(70);
|
||||||
@ -599,6 +630,6 @@ void runMonitor(void *name){
|
|||||||
background.pushSprite(0,0);
|
background.pushSprite(0,0);
|
||||||
|
|
||||||
// Pause the task for 5000ms
|
// Pause the task for 5000ms
|
||||||
vTaskDelay(5000 / portTICK_PERIOD_MS);
|
// vTaskDelay(5000 / portTICK_PERIOD_MS);
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,8 @@
|
|||||||
|
|
||||||
// Mining
|
// Mining
|
||||||
#define THREADS 1
|
#define THREADS 1
|
||||||
#define MAX_NONCE 3000000
|
#define MAX_NONCE 5000000U
|
||||||
// #define MAX_NONCE 1.215.752.192
|
#define TARGET_NONCE 471136297U
|
||||||
|
|
||||||
// Pool
|
|
||||||
//#define POOL_URL "solo.ckpool.org" //"btc.zsolo.bid" "eu.stratum.slushpool.com"
|
|
||||||
//#define POOL_PORT 3333 //6057 //3333
|
|
||||||
|
|
||||||
|
|
||||||
void runMonitor(void *name);
|
void runMonitor(void *name);
|
||||||
void runWorker(void *name);
|
void runWorker(void *name);
|
||||||
|
Loading…
Reference in New Issue
Block a user