Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过节点的请求库调用 RPC 请求,在 web3 Ethereum 中启动一个矿工。
我收到“miner_start 方法未实现”错误。我错过了什么?
出于安全原因,默认情况下不会通过 JSON RPC 启用“矿工”API。您可以使用--rpcapi以下选项启用它:
--rpcapi
geth --rpc --rpcapi "eth,miner,net,web3"
所有可用模块有:admin、eth、debug、miner、net、shh、txpool、personal、web3。