feat(c-miner): port miner pipeline to modular C implementation

This commit is contained in:
2026-03-30 01:07:19 +02:00
parent 9a0a170799
commit d2c118833b
18 changed files with 3299 additions and 0 deletions

8
mining_loop.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef MINING_LOOP_H
#define MINING_LOOP_H
#include "config.h"
int run_mining_loop(const MinerConfig *cfg, int worker_idx, const char *extranonce2, int event_fd);
#endif