Skip to content

[Testing version | 测试版本] BTCAgent for Ethereum (pool server not ready | 矿池服务器未就绪)

Pre-release
Pre-release
Compare
Choose a tag to compare
@YihaoPeng YihaoPeng released this 04 Jan 08:47
· 8 commits to master since this release

Update 2022.01.05

  • Fix inaccurate default difficulty for Ethereum.

Update 2022.01.04

  • for BTC/LTC:
    Disconnect the miner immediately when the connection to the mining pool is not ready.
    This helps to solve the problem that the miner still thinks the connection is active when the BTCAgent's connection to the mining pool fails.
  • for ETH:
    Added Ethereum mining support ("agent_type": "eth",).
    However, the mining pool server has not yet supported it, so it cannot be used currently.
    The server will support it in the next upgrade.

2022.01.05 更新内容

  • 修复以太坊挖矿时默认难度不精确的问题。

2022.01.04 更新内容

  • 对于 BTC/LTC:
    在BTCAgent还没有连上矿池时如果有矿机连进来,就立即断开矿机连接。
    这可以防止在还没连上矿池时矿机却认为矿池连接活跃,导致无法切换到备用池。
  • 对于 ETH:
    添加了以太坊挖矿支持("agent_type": "eth",)。
    但是以太坊挖矿服务器目前还不支持BTCAgent,所以暂时无法使用。
    等服务器完成升级后就可以使用BTCAgent挖以太坊了。

Test Ethereum support | 测试以太坊支持

vim agent_conf.json
{
    "multi_user_mode": true,
    "agent_type": "eth",
    "submit_response_from_server": true,
    "agent_listen_ip": "0.0.0.0",
    "agent_listen_port": 3333,
    "proxy": [],
    "pool_use_tls": false,
    "pools": [
        ["127.0.0.1", 53333, "hu60"]
    ]
}
./btcagent-linux-x64 -c agent_conf.json

Enable all debug output | 显示所有调试输出:

./btcagent-linux-x64 -c agent_conf.json -v 999