Mining-Pools

哪些比特幣礦工允許在 URL 中使用路徑?

  • March 31, 2016

我最近一直在嘗試實現一個池並針對 GUIminer 對其進行測試。令我驚訝的是,它無法處理池 URL 中的路徑,只能處理子域。例如,呼叫:

http://tpbitpool.appspot.com

在埠 80 上給出了正確的響應

{'message': 'Method not found', 'code': -32601, 'data': 'The called method was not found on the server'}

但是打電話

http://tpbitpool.appspot.com/anything

甚至

http://tpbitpool.appspot.com/

儘管能夠被伺服器處理,但給出的錯誤是

"Problems communicating with bitcoin RPC"

使用 Python 的 jsonrpc 測試相同的 URL 會得到正確的結果。

礦工有什麼理由會以這種方式行事?是否有類似行為的挖礦軟體列表?

(注意,上面的 URL 應該有一段時間用於測試目的,但只能通過 http 和 https 埠訪問)

DiabloMiner 允許 URL 和非 URL。-l <http://user:pass@host:port/>與 -u 使用者 -p 密碼 -o 主機 -r 埠相同。URL 可能包含路徑。

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