Go-Ethereum
我需要將 geth –rpc 與 ethminer 一起使用嗎?
我看過一些人們做的教程
geth account new geth --rpc ethminer -G -F your.poolurl.com:port/WALLET --farm-recheck 200
還有其他只是簡單的
geth account new ethminer -G -F your.poolurl.com:port/WALLET --farm-recheck 200
目的是
geth --rpc
什麼?我真的需要它來開始挖礦嗎?
geth –rpc 的目的是什麼?
該命令啟動 HTTP JSON-RPC 客戶端。
JSON-RPC 是一種無狀態的輕量級遠端過程呼叫 (RPC) 協議。
我真的需要它來開始挖礦並獲利嗎?
為了在耕種模式下執行 ethminer,您需要連接到 geth 節點。該
-F
選項可以做到。-F,--farm <url> Put into mining farm mode with the work server at URL (default: http://127.0.0.1:8545)
–rpc 標誌打開您的埠到 RPC 連接,預設情況下使用埠 8545。採礦不需要它。–rpc 用於外部(或內部)連接,例如 web3js。您可以連接到該節點並使用該節點發送呼叫/交易。
有關 JSON-RPC 的更多資訊