Altcoin

Cpuminer 的山寨幣單獨挖礦問題

  • February 23, 2020

我已經複製了 litecoin 來製作我自己的山寨幣以獲得樂趣,我想在主網上使用 cpuminer 單獨開採新幣。我已經在我的 Mac OSX 中編譯並安裝了 cpu 礦工,我正在執行山寨幣守護程序並打開了埠。

./src/altcoind -daemon

當我執行 cpuminer 時,我得到了這個錯誤。

./minerd -o http://127.0.0.1:26201 -O litecoinrpc:9eac7ba52764a6d42aa48386e8f435f8 -a scrypt --no-longpoll --no-getwork --no-stratum --coinbase-addr=xxxxxx

[2018-02-27 17:55:48] Binding thread 2 to cpu 2
[2018-02-27 17:55:48] Binding thread 0 to cpu 0
[2018-02-27 17:55:48] Binding thread 1 to cpu 1
[2018-02-27 17:55:48] Binding thread 4 to cpu 4
[2018-02-27 17:55:48] Binding thread 3 to cpu 3
[2018-02-27 17:55:48] Binding thread 5 to cpu 5
[2018-02-27 17:55:48] 8 miner threads started, using 'scrypt' algorithm.
[2018-02-27 17:55:48] Binding thread 6 to cpu 6
[2018-02-27 17:55:48] Binding thread 7 to cpu 7
[2018-02-27 17:55:48] HTTP request failed: Failed to connect to 127.0.0.1 port 26201: Connection refused
[2018-02-27 17:55:48] json_rpc_call failed, retry after 30 seconds

這是我的 altcoin.conf

rpcuser=litecoinrpc
rpcpassword=xxxxxx
rpcport=262012
rpcallowip=127.0.0.1
server=1
gen=1
listen=1

為什麼cpuminer不工作?

另一種嘗試:我更改了 conf 文件刪除埠

rpcuser=litecoinrpc
rpcpassword=xxxx
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1

現在它似乎連接到埠但我收到來自伺服器的空回复

[2018-02-27 18:23:11] Binding thread 4 to cpu 4
[2018-02-27 18:23:11] Binding thread 5 to cpu 5
[2018-02-27 18:23:11] Binding thread 6 to cpu 6
[2018-02-27 18:23:11] 8 miner threads started, using 'scrypt' algorithm.
[2018-02-27 18:23:11] Binding thread 7 to cpu 7
[2018-02-27 18:23:11] HTTP request failed: Empty reply from server
[2018-02-27 18:23:11] json_rpc_call failed, retry after 30 seconds

非常感謝任何幫助或建議。

我有類似的問題,我切換到 sgminer,即使 cgminer 也是不錯的選擇,但我個人使用的 sgminer 與您的設置相同,在我的情況下一切正常

引用自:https://bitcoin.stackexchange.com/questions/71520