From 80670c5c464b16090ad628b85226a613a3a74677 Mon Sep 17 00:00:00 2001 From: MadelineMurray <43356962+MadelineMurray@users.noreply.github.com> Date: Thu, 31 Jan 2019 10:59:17 +1000 Subject: [PATCH] Wrong config keys in Clique genesis file config (#721) Signed-off-by: Adrian Sutton --- docs/Consensus-Protocols/Clique.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Consensus-Protocols/Clique.md b/docs/Consensus-Protocols/Clique.md index dc4dea02da..4480c0ca52 100644 --- a/docs/Consensus-Protocols/Clique.md +++ b/docs/Consensus-Protocols/Clique.md @@ -27,8 +27,8 @@ A PoA genesis file defines properties specific to Clique: "config": { .... "clique": { - "period": 15, - "epoch": 30000 + "blockperiodseconds": 15, + "epochlength": 30000 } }, ... @@ -39,8 +39,8 @@ A PoA genesis file defines properties specific to Clique: The properties specific to Clique are: -* `period` - Block time in seconds. -* `epoch` - Number of blocks after which to reset all votes. +* `blockperiodseconds` - Block time in seconds. +* `epochlength` - Number of blocks after which to reset all votes. * `extraData` - Initial signers are specified after the 32 bytes reserved for vanity data. To connect to the Rinkeby testnet, start Pantheon with the [`--network=rinkeby`](../Reference/Pantheon-CLI-Syntax.md#network)