【问题标题】:Ethereum Goerli以太坊歌尔里
【发布时间】:2022-11-11 04:25:17
【问题描述】:

我使用以下命令运行了以太坊 Goerli 网络:

geth --goerli --datadir="/mnt/sdc1/ethereum/goerli/" --port="30304"  --cache 4096 --http --http.addr="0.0.0.0" --http.port="8546" --http.vhosts="*" --http.corsdomain="*" --http.api="admin, debug, web3, eth, txpool, personal, clique, miner, net" --authrpc.jwtsecret=/tmp/jwtsecret --authrpc.vhosts="*" --authrpc.port=8553 --allow-insecure-unlock --mine --miner.threads=4  --miner.etherbase '0x...'

已启用矿工和 etherbase,但未开始挖矿。 我在日志中看到了下一个:

INFO [07-07|19:01:18.501] Commit new sealing work                  number=7,186,017 sealhash=3033a3..979541 uncles=2 txs=22   gas=29,479,757 fees=0.04464585701   elapsed=108.735ms
WARN [07-07|19:01:18.501] Block sealing failed                     err="unauthorized signer"

怎么了? 如何在以太坊 Goerly 网络中启用挖矿? 谢谢

【问题讨论】:

    标签: ethereum mining


    【解决方案1】:

    截至 2022 年 8 月 11 日,Goerli 网络“合并”为权益证明网络,由持有测试网 ETH 代币的验证者而非矿工来保护。

    如果有兴趣,这里有关于如何成为 Goerli 验证者的指南:https://coinmarketcap.com/alexandria/article/how-to-set-up-an-eth-2-0-validator-on-goerli-testnet

    【讨论】: