skot / ESP-Miner

A bitcoin ASIC miner for the ESP32
GNU General Public License v3.0
370 stars 140 forks source link

api: add stratum difficulty #489

Closed tdb3 closed 5 hours ago

tdb3 commented 5 days ago

Fixes Issue #482 Adds current stratum difficulty to the api/system/info endpoint.

Tested mining on testnet4 (difficulty 1000)

$ curl <bitaxe_IP_address>/api/system/info
{
...
        "stratumDiff":  1000,

then stopped the testnet4 stratum server to induce failover to the secondary stratum server (mainnet, Ocean):

$ curl <bitaxe_IP_address>/api/system/info
{
...
        "stratumDiff":  262144,
skot commented 5 hours ago

This works great, thanks @tdb3 !