From 8dd2ed4c6fe12459edeb9b783bdaaaeb590ec15c Mon Sep 17 00:00:00 2001 From: Erik Grinaker Date: Thu, 13 Aug 2020 13:05:12 +0200 Subject: [PATCH] update ResponseInitChain.app_hash description (#143) --- spec/abci/abci.md | 2 -- spec/core/data_structures.md | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/spec/abci/abci.md b/spec/abci/abci.md index afe3a4729..b297e2b99 100644 --- a/spec/abci/abci.md +++ b/spec/abci/abci.md @@ -254,8 +254,6 @@ via light client. set proposed by tendermint (ie. in the genesis file), or if it wants to use a different one (perhaps computed based on some application specific information in the genesis file). - - The returned `AppHash` must match the hash specified in the genesis file, and will be - recorded in the initial genesis block. ### Query diff --git a/spec/core/data_structures.md b/spec/core/data_structures.md index 3ffcf3321..e95a39f21 100644 --- a/spec/core/data_structures.md +++ b/spec/core/data_structures.md @@ -458,7 +458,7 @@ block.AppHash == state.AppHash Arbitrary byte array returned by the application after executing and commiting the previous block. It serves as the basis for validating any merkle proofs that comes from the ABCI application and represents the state of the actual application rather than the state of the blockchain itself. -The first block's `block.Header.AppHash` is given by `ResponseInitChain.app_hash`, which must match the app hash specified in the genesis file. +The first block's `block.Header.AppHash` is given by `ResponseInitChain.app_hash`. ### LastResultsHash