Litecoin

探勘新的基於萊特幣的山寨幣。內部伺服器錯誤 500

  • October 19, 2018

如果我把這個問題放在錯誤的地方,我很抱歉。

我基於萊特幣原始碼創建了新的山寨幣。看起來一切正常,wallet 和 wallet-qt 已編譯並執行。但是,當我嘗試使用 cpuminer(礦工)進行探勘時,出現 500 錯誤。

我將此設置放入 *coin.conf 文件:

rpcuser=miner1
rpcpassword=some_password_here
rpcallowip=127.0.0.1
rcpport=9332
server=1
gen=0

礦工命令:

minerd -a scrypt -o http://127.0.0.1:9332 -O miner1:some_password_here

礦工輸出:

[2017-06-29 10:38:02] 1 miner threads started, using 'scrypt' algorithm.
[2017-06-29 10:38:02] HTTP request failed: The requested URL returned error: 500 Internal Server Error
[2017-06-29 10:38:02] json_rpc_call failed, retry after 30 seconds

我做錯了什麼?我還需要做些什麼來“啟動”我的新加密貨幣嗎?

謝謝您的幫助。

問題是我用的萊特幣0.8.4.7,沒有嵌入式挖礦軟體。

我最終得到了兩個解決方案:

  1. 創建礦池,然後:
  • 將節點相互連接
  • 在我的礦池上執行礦工
  1. 編譯並執行(-gen=1 選項)舊萊特幣節點,然後連接到其他節點之一。

刪除 gen=0 whit configuracion –> yourcoin.conf

並執行

./minerd -a scrypt –url=http://“YOUR IP”:“YOUR PORT”/

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