Merge PR #4613: Only change rootmultistore hash when substore hashes change

This commit is contained in:
Ethan Frey
2019-06-25 13:11:22 -04:00
committed by Alexander Bezobchuk
parent 0feee1c160
commit 891eb8eec5
4 changed files with 39 additions and 5 deletions
+10 -4
View File
@@ -2,14 +2,20 @@ package types
import abci "github.com/tendermint/tendermint/abci/types"
// initialize application state at genesis
// InitChainer initializes application state at genesis
type InitChainer func(ctx Context, req abci.RequestInitChain) abci.ResponseInitChain
// run code before the transactions in a block
// BeginBlocker runs code before the transactions in a block
//
// Note: applications which set create_empty_blocks=false will not have regular block timing and should use
// e.g. BFT timestamps rather than block height for any periodic BeginBlock logic
type BeginBlocker func(ctx Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock
// run code after the transactions in a block and return updates to the validator set
// EndBlocker runs code after the transactions in a block and return updates to the validator set
//
// Note: applications which set create_empty_blocks=false will not have regular block timing and should use
// e.g. BFT timestamps rather than block height for any periodic EndBlock logic
type EndBlocker func(ctx Context, req abci.RequestEndBlock) abci.ResponseEndBlock
// respond to p2p filtering queries from Tendermint
// PeerFilter responds to p2p filtering queries from Tendermint
type PeerFilter func(info string) abci.ResponseQuery