From de9599bff1a506230db7ebccee1e55071dee5453 Mon Sep 17 00:00:00 2001 From: Martin Turon Date: Tue, 6 Apr 2021 02:15:19 -0700 Subject: [PATCH] [DOCS] fix --miner.etherbase flag (#22616) The `--etherbase` parameter seems to be named `--miner.etherbase` now. --- docs/_interface/Private-Network.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_interface/Private-Network.md b/docs/_interface/Private-Network.md index f976eb0388..b0457a8edf 100644 --- a/docs/_interface/Private-Network.md +++ b/docs/_interface/Private-Network.md @@ -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 --mine --miner.threads=1 --etherbase=0x0000000000000000000000000000000000000000 +geth --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`.