[DOCS] fix --miner.etherbase flag (#22616)
The `--etherbase` parameter seems to be named `--miner.etherbase` now.
This commit is contained in:
parent
173e32624a
commit
de9599bff1
|
@ -291,8 +291,8 @@ create a stable stream of blocks at regular intervals. To start a Geth instance
|
|||
mining, run it with all the usual flags and add the following to configure mining:
|
||||
|
||||
```shell
|
||||
geth <other-flags> --mine --miner.threads=1 --etherbase=0x0000000000000000000000000000000000000000
|
||||
geth <other-flags> --mine --miner.threads=1 --miner.etherbase=0x0000000000000000000000000000000000000000
|
||||
```
|
||||
|
||||
This will start mining bocks and transactions on a single CPU thread, crediting all block
|
||||
rewards to the account specified by `--etherbase`.
|
||||
rewards to the account specified by `--miner.etherbase`.
|
||||
|
|
Loading…
Reference in New Issue