[DOCS] fix --miner.etherbase flag (#22616)

The `--etherbase` parameter seems to be named `--miner.etherbase` now.
This commit is contained in:
Martin Turon 2021-04-06 02:15:19 -07:00 committed by GitHub
parent 173e32624a
commit de9599bff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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`.