From befe1a6d4fed92d5b5fac7676766297366d37d2c Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 29 Mar 2022 18:46:14 -0400 Subject: [PATCH] fix single quotes --- spec/core/genesis.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/spec/core/genesis.md b/spec/core/genesis.md index 9246d08c1..5bf6156fd 100644 --- a/spec/core/genesis.md +++ b/spec/core/genesis.md @@ -12,14 +12,13 @@ The genesis file is the starting point of a chain. An application will populate - `max_bytes`: The max amount of bytes a block can be. - `max_gas`: The maximum amount of gas that a block can have. - `evidence` -> Note: For evidence to be considered invalid, evidence must be older than both `max_age_num_blocks` and `max_age_duration` - - `max_age_num_blocks`: After this preset amount of blocks has passed a single piece of evidence is considered invalid + - `max_age_num_blocks`: After this preset amount of blocks has passed a single piece of evidence is considered invalid. - `max_age_duration`: After this preset amount of time has passed a single piece of evidence is considered invalid. - `max_bytes`: The max amount of bytes of all evidence included in a block. - `validator` - - `pub_key_types`: Defines which curves are to be accepted as a valid validator consensus key. Tendermint supports ed25519, sr25519 and secp256k1. + - `pub_key_types`: Defines which curves are to be accepted as a valid validator consensus key. Tendermint supports ed25519, sr25519 and secp256k1. - `version` - - `app_version`: The version of the application. This is set by the application and is used to identify which version of the app a user should be using in order to operate a node. + - `app_version`: The version of the application. This is set by the application and is used to identify which version of the app a user should be using in order to operate a node. - `synchrony` - `message_delay`: A bound on how long a proposal message may take to reach all validators on a network and still be considered valid. - `precision`: A bound on how skewed the proposer's clock may be from any validator on the network while still producing valid proposals.