You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

541 lines
17 KiB

mempool: move interface into mempool package (#3524) ## Description Refs #2659 Breaking changes in the mempool package: [mempool] #2659 Mempool now an interface old Mempool renamed to CListMempool NewMempool renamed to NewCListMempool Option renamed to CListOption MempoolReactor renamed to Reactor NewMempoolReactor renamed to NewReactor unexpose TxID method TxInfo.PeerID renamed to SenderID unexpose MempoolReactor.Mempool Breaking changes in the state package: [state] #2659 Mempool interface moved to mempool package MockMempool moved to top-level mock package and renamed to Mempool Non Breaking changes in the node package: [node] #2659 Add Mempool method, which allows you to access mempool ## Commits * move Mempool interface into mempool package Refs #2659 Breaking changes in the mempool package: - Mempool now an interface - old Mempool renamed to CListMempool Breaking changes to state package: - MockMempool moved to mempool/mock package and renamed to Mempool - Mempool interface moved to mempool package * assert CListMempool impl Mempool * gofmt code * rename MempoolReactor to Reactor - combine everything into one interface - rename TxInfo.PeerID to TxInfo.SenderID - unexpose MempoolReactor.Mempool * move mempool mock into top-level mock package * add a fixme TxsFront should not be a part of the Mempool interface because it leaks implementation details. Instead, we need to come up with general interface for querying the mempool so the MempoolReactor can fetch and broadcast txs to peers. * change node#Mempool to return interface * save commit = new reactor arch * Revert "save commit = new reactor arch" This reverts commit 1bfceacd9d65a720574683a7f22771e69af9af4d. * require CListMempool in mempool.Reactor * add two changelog entries * fixes after my own review * quote interfaces, structs and functions * fixes after Ismail's review * make node's mempool an interface * make InitWAL/CloseWAL methods a part of Mempool interface * fix merge conflicts * make node's mempool an interface
5 years ago
mempool: move interface into mempool package (#3524) ## Description Refs #2659 Breaking changes in the mempool package: [mempool] #2659 Mempool now an interface old Mempool renamed to CListMempool NewMempool renamed to NewCListMempool Option renamed to CListOption MempoolReactor renamed to Reactor NewMempoolReactor renamed to NewReactor unexpose TxID method TxInfo.PeerID renamed to SenderID unexpose MempoolReactor.Mempool Breaking changes in the state package: [state] #2659 Mempool interface moved to mempool package MockMempool moved to top-level mock package and renamed to Mempool Non Breaking changes in the node package: [node] #2659 Add Mempool method, which allows you to access mempool ## Commits * move Mempool interface into mempool package Refs #2659 Breaking changes in the mempool package: - Mempool now an interface - old Mempool renamed to CListMempool Breaking changes to state package: - MockMempool moved to mempool/mock package and renamed to Mempool - Mempool interface moved to mempool package * assert CListMempool impl Mempool * gofmt code * rename MempoolReactor to Reactor - combine everything into one interface - rename TxInfo.PeerID to TxInfo.SenderID - unexpose MempoolReactor.Mempool * move mempool mock into top-level mock package * add a fixme TxsFront should not be a part of the Mempool interface because it leaks implementation details. Instead, we need to come up with general interface for querying the mempool so the MempoolReactor can fetch and broadcast txs to peers. * change node#Mempool to return interface * save commit = new reactor arch * Revert "save commit = new reactor arch" This reverts commit 1bfceacd9d65a720574683a7f22771e69af9af4d. * require CListMempool in mempool.Reactor * add two changelog entries * fixes after my own review * quote interfaces, structs and functions * fixes after Ismail's review * make node's mempool an interface * make InitWAL/CloseWAL methods a part of Mempool interface * fix merge conflicts * make node's mempool an interface
5 years ago
cs/replay: execCommitBlock should not read from state.lastValidators (#3067) * execCommitBlock should not read from state.lastValidators * fix height 1 * fix blockchain/reactor_test * fix consensus/mempool_test * fix consensus/reactor_test * fix consensus/replay_test * add CHANGELOG * fix consensus/reactor_test * fix consensus/replay_test * add a test for replay validators change * fix mem_pool test * fix byzantine test * remove a redundant code * reduce validator change blocks to 6 * fix * return peer0 config * seperate testName * seperate testName 1 * seperate testName 2 * seperate app db path * seperate app db path 1 * add a lock before startNet * move the lock to reactor_test * simulate just once * try to find problem * handshake only saveState when app version changed * update gometalinter to 3.0.0 (#3233) in the attempt to fix https://circleci.com/gh/tendermint/tendermint/43165 also code is simplified by running gofmt -s . remove unused vars enable linters we're currently passing remove deprecated linters (cherry picked from commit d47094550315c094512a242445e0dde24b5a03f5) * gofmt code * goimport code * change the bool name to testValidatorsChange * adjust receive kvstore.ProtocolVersion * adjust receive kvstore.ProtocolVersion 1 * adjust receive kvstore.ProtocolVersion 3 * fix merge execution.go * fix merge develop * fix merge develop 1 * fix run cleanupFunc * adjust code according to reviewers' opinion * modify the func name match the convention * simplify simulate a chain containing some validator change txs 1 * test CI error * Merge remote-tracking branch 'upstream/develop' into fixReplay 1 * fix pubsub_test * subscribeUnbuffered vote channel
5 years ago
7 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
add support for block pruning via ABCI Commit response (#4588) * Added BlockStore.DeleteBlock() * Added initial block pruner prototype * wip * Added BlockStore.PruneBlocks() * Added consensus setting for block pruning * Added BlockStore base * Error on replay if base does not have blocks * Handle missing blocks when sending VoteSetMaj23Message * Error message tweak * Properly update blockstore state * Error message fix again * blockchain: ignore peer missing blocks * Added FIXME * Added test for block replay with truncated history * Handle peer base in blockchain reactor * Improved replay error handling * Added tests for Store.PruneBlocks() * Fix non-RPC handling of truncated block history * Panic on missing block meta in needProofBlock() * Updated changelog * Handle truncated block history in RPC layer * Added info about earliest block in /status RPC * Reorder height and base in blockchain reactor messages * Updated changelog * Fix tests * Appease linter * Minor review fixes * Non-empty BlockStores should always have base > 0 * Update code to assume base > 0 invariant * Added blockstore tests for pruning to 0 * Make sure we don't prune below the current base * Added BlockStore.Size() * config: added retain_blocks recommendations * Update v1 blockchain reactor to handle blockstore base * Added state database pruning * Propagate errors on missing validator sets * Comment tweaks * Improved error message Co-Authored-By: Anton Kaliaev <anton.kalyaev@gmail.com> * use ABCI field ResponseCommit.retain_height instead of retain-blocks config option * remove State.RetainHeight, return value instead * fix minor issues * rename pruneHeights() to pruneBlocks() * noop to fix GitHub borkage Co-authored-by: Anton Kaliaev <anton.kalyaev@gmail.com>
4 years ago
8 years ago
8 years ago
8 years ago
8 years ago
cs/replay: execCommitBlock should not read from state.lastValidators (#3067) * execCommitBlock should not read from state.lastValidators * fix height 1 * fix blockchain/reactor_test * fix consensus/mempool_test * fix consensus/reactor_test * fix consensus/replay_test * add CHANGELOG * fix consensus/reactor_test * fix consensus/replay_test * add a test for replay validators change * fix mem_pool test * fix byzantine test * remove a redundant code * reduce validator change blocks to 6 * fix * return peer0 config * seperate testName * seperate testName 1 * seperate testName 2 * seperate app db path * seperate app db path 1 * add a lock before startNet * move the lock to reactor_test * simulate just once * try to find problem * handshake only saveState when app version changed * update gometalinter to 3.0.0 (#3233) in the attempt to fix https://circleci.com/gh/tendermint/tendermint/43165 also code is simplified by running gofmt -s . remove unused vars enable linters we're currently passing remove deprecated linters (cherry picked from commit d47094550315c094512a242445e0dde24b5a03f5) * gofmt code * goimport code * change the bool name to testValidatorsChange * adjust receive kvstore.ProtocolVersion * adjust receive kvstore.ProtocolVersion 1 * adjust receive kvstore.ProtocolVersion 3 * fix merge execution.go * fix merge develop * fix merge develop 1 * fix run cleanupFunc * adjust code according to reviewers' opinion * modify the func name match the convention * simplify simulate a chain containing some validator change txs 1 * test CI error * Merge remote-tracking branch 'upstream/develop' into fixReplay 1 * fix pubsub_test * subscribeUnbuffered vote channel
5 years ago
cs/replay: execCommitBlock should not read from state.lastValidators (#3067) * execCommitBlock should not read from state.lastValidators * fix height 1 * fix blockchain/reactor_test * fix consensus/mempool_test * fix consensus/reactor_test * fix consensus/replay_test * add CHANGELOG * fix consensus/reactor_test * fix consensus/replay_test * add a test for replay validators change * fix mem_pool test * fix byzantine test * remove a redundant code * reduce validator change blocks to 6 * fix * return peer0 config * seperate testName * seperate testName 1 * seperate testName 2 * seperate app db path * seperate app db path 1 * add a lock before startNet * move the lock to reactor_test * simulate just once * try to find problem * handshake only saveState when app version changed * update gometalinter to 3.0.0 (#3233) in the attempt to fix https://circleci.com/gh/tendermint/tendermint/43165 also code is simplified by running gofmt -s . remove unused vars enable linters we're currently passing remove deprecated linters (cherry picked from commit d47094550315c094512a242445e0dde24b5a03f5) * gofmt code * goimport code * change the bool name to testValidatorsChange * adjust receive kvstore.ProtocolVersion * adjust receive kvstore.ProtocolVersion 1 * adjust receive kvstore.ProtocolVersion 3 * fix merge execution.go * fix merge develop * fix merge develop 1 * fix run cleanupFunc * adjust code according to reviewers' opinion * modify the func name match the convention * simplify simulate a chain containing some validator change txs 1 * test CI error * Merge remote-tracking branch 'upstream/develop' into fixReplay 1 * fix pubsub_test * subscribeUnbuffered vote channel
5 years ago
cs/replay: execCommitBlock should not read from state.lastValidators (#3067) * execCommitBlock should not read from state.lastValidators * fix height 1 * fix blockchain/reactor_test * fix consensus/mempool_test * fix consensus/reactor_test * fix consensus/replay_test * add CHANGELOG * fix consensus/reactor_test * fix consensus/replay_test * add a test for replay validators change * fix mem_pool test * fix byzantine test * remove a redundant code * reduce validator change blocks to 6 * fix * return peer0 config * seperate testName * seperate testName 1 * seperate testName 2 * seperate app db path * seperate app db path 1 * add a lock before startNet * move the lock to reactor_test * simulate just once * try to find problem * handshake only saveState when app version changed * update gometalinter to 3.0.0 (#3233) in the attempt to fix https://circleci.com/gh/tendermint/tendermint/43165 also code is simplified by running gofmt -s . remove unused vars enable linters we're currently passing remove deprecated linters (cherry picked from commit d47094550315c094512a242445e0dde24b5a03f5) * gofmt code * goimport code * change the bool name to testValidatorsChange * adjust receive kvstore.ProtocolVersion * adjust receive kvstore.ProtocolVersion 1 * adjust receive kvstore.ProtocolVersion 3 * fix merge execution.go * fix merge develop * fix merge develop 1 * fix run cleanupFunc * adjust code according to reviewers' opinion * modify the func name match the convention * simplify simulate a chain containing some validator change txs 1 * test CI error * Merge remote-tracking branch 'upstream/develop' into fixReplay 1 * fix pubsub_test * subscribeUnbuffered vote channel
5 years ago
cs/replay: execCommitBlock should not read from state.lastValidators (#3067) * execCommitBlock should not read from state.lastValidators * fix height 1 * fix blockchain/reactor_test * fix consensus/mempool_test * fix consensus/reactor_test * fix consensus/replay_test * add CHANGELOG * fix consensus/reactor_test * fix consensus/replay_test * add a test for replay validators change * fix mem_pool test * fix byzantine test * remove a redundant code * reduce validator change blocks to 6 * fix * return peer0 config * seperate testName * seperate testName 1 * seperate testName 2 * seperate app db path * seperate app db path 1 * add a lock before startNet * move the lock to reactor_test * simulate just once * try to find problem * handshake only saveState when app version changed * update gometalinter to 3.0.0 (#3233) in the attempt to fix https://circleci.com/gh/tendermint/tendermint/43165 also code is simplified by running gofmt -s . remove unused vars enable linters we're currently passing remove deprecated linters (cherry picked from commit d47094550315c094512a242445e0dde24b5a03f5) * gofmt code * goimport code * change the bool name to testValidatorsChange * adjust receive kvstore.ProtocolVersion * adjust receive kvstore.ProtocolVersion 1 * adjust receive kvstore.ProtocolVersion 3 * fix merge execution.go * fix merge develop * fix merge develop 1 * fix run cleanupFunc * adjust code according to reviewers' opinion * modify the func name match the convention * simplify simulate a chain containing some validator change txs 1 * test CI error * Merge remote-tracking branch 'upstream/develop' into fixReplay 1 * fix pubsub_test * subscribeUnbuffered vote channel
5 years ago
8 years ago
6 years ago
8 years ago
7 years ago
  1. package state
  2. import (
  3. "errors"
  4. "fmt"
  5. "time"
  6. abci "github.com/tendermint/tendermint/abci/types"
  7. cryptoenc "github.com/tendermint/tendermint/crypto/encoding"
  8. "github.com/tendermint/tendermint/libs/fail"
  9. "github.com/tendermint/tendermint/libs/log"
  10. mempl "github.com/tendermint/tendermint/mempool"
  11. tmstate "github.com/tendermint/tendermint/proto/tendermint/state"
  12. tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
  13. "github.com/tendermint/tendermint/proxy"
  14. "github.com/tendermint/tendermint/types"
  15. )
  16. //-----------------------------------------------------------------------------
  17. // BlockExecutor handles block execution and state updates.
  18. // It exposes ApplyBlock(), which validates & executes the block, updates state w/ ABCI responses,
  19. // then commits and updates the mempool atomically, then saves state.
  20. // BlockExecutor provides the context and accessories for properly executing a block.
  21. type BlockExecutor struct {
  22. // save state, validators, consensus params, abci responses here
  23. store Store
  24. // execute the app against this
  25. proxyApp proxy.AppConnConsensus
  26. // events
  27. eventBus types.BlockEventPublisher
  28. // manage the mempool lock during commit
  29. // and update both with block results after commit.
  30. mempool mempl.Mempool
  31. evpool EvidencePool
  32. logger log.Logger
  33. metrics *Metrics
  34. }
  35. type BlockExecutorOption func(executor *BlockExecutor)
  36. func BlockExecutorWithMetrics(metrics *Metrics) BlockExecutorOption {
  37. return func(blockExec *BlockExecutor) {
  38. blockExec.metrics = metrics
  39. }
  40. }
  41. // NewBlockExecutor returns a new BlockExecutor with a NopEventBus.
  42. // Call SetEventBus to provide one.
  43. func NewBlockExecutor(
  44. stateStore Store,
  45. logger log.Logger,
  46. proxyApp proxy.AppConnConsensus,
  47. mempool mempl.Mempool,
  48. evpool EvidencePool,
  49. options ...BlockExecutorOption,
  50. ) *BlockExecutor {
  51. res := &BlockExecutor{
  52. store: stateStore,
  53. proxyApp: proxyApp,
  54. eventBus: types.NopEventBus{},
  55. mempool: mempool,
  56. evpool: evpool,
  57. logger: logger,
  58. metrics: NopMetrics(),
  59. }
  60. for _, option := range options {
  61. option(res)
  62. }
  63. return res
  64. }
  65. func (blockExec *BlockExecutor) Store() Store {
  66. return blockExec.store
  67. }
  68. // SetEventBus - sets the event bus for publishing block related events.
  69. // If not called, it defaults to types.NopEventBus.
  70. func (blockExec *BlockExecutor) SetEventBus(eventBus types.BlockEventPublisher) {
  71. blockExec.eventBus = eventBus
  72. }
  73. // CreateProposalBlock calls state.MakeBlock with evidence from the evpool
  74. // and txs from the mempool. The max bytes must be big enough to fit the commit.
  75. // Up to 1/10th of the block space is allcoated for maximum sized evidence.
  76. // The rest is given to txs, up to the max gas.
  77. func (blockExec *BlockExecutor) CreateProposalBlock(
  78. height int64,
  79. state State, commit *types.Commit,
  80. proposerAddr []byte,
  81. ) (*types.Block, *types.PartSet) {
  82. maxBytes := state.ConsensusParams.Block.MaxBytes
  83. maxGas := state.ConsensusParams.Block.MaxGas
  84. evidence, evSize := blockExec.evpool.PendingEvidence(state.ConsensusParams.Evidence.MaxBytes)
  85. // Fetch a limited amount of valid txs
  86. maxDataBytes := types.MaxDataBytes(maxBytes, evSize, state.Validators.Size())
  87. txs := blockExec.mempool.ReapMaxBytesMaxGas(maxDataBytes, maxGas)
  88. return state.MakeBlock(height, txs, commit, evidence, proposerAddr)
  89. }
  90. // ValidateBlock validates the given block against the given state.
  91. // If the block is invalid, it returns an error.
  92. // Validation does not mutate state, but does require historical information from the stateDB,
  93. // ie. to verify evidence from a validator at an old height.
  94. func (blockExec *BlockExecutor) ValidateBlock(state State, block *types.Block) error {
  95. return validateBlock(blockExec.evpool, state, block)
  96. }
  97. // ApplyBlock validates the block against the state, executes it against the app,
  98. // fires the relevant events, commits the app, and saves the new state and responses.
  99. // It returns the new state and the block height to retain (pruning older blocks).
  100. // It's the only function that needs to be called
  101. // from outside this package to process and commit an entire block.
  102. // It takes a blockID to avoid recomputing the parts hash.
  103. func (blockExec *BlockExecutor) ApplyBlock(
  104. state State, blockID types.BlockID, block *types.Block,
  105. ) (State, int64, error) {
  106. if err := blockExec.ValidateBlock(state, block); err != nil {
  107. return state, 0, ErrInvalidBlock(err)
  108. }
  109. // Update evpool with the block and state and get any byzantine validators for that block
  110. byzVals := blockExec.evpool.ABCIEvidence(block.Height, block.Evidence.Evidence)
  111. startTime := time.Now().UnixNano()
  112. abciResponses, err := execBlockOnProxyApp(blockExec.logger, blockExec.proxyApp, block,
  113. blockExec.store, state.InitialHeight, byzVals)
  114. endTime := time.Now().UnixNano()
  115. blockExec.metrics.BlockProcessingTime.Observe(float64(endTime-startTime) / 1000000)
  116. if err != nil {
  117. return state, 0, ErrProxyAppConn(err)
  118. }
  119. fail.Fail() // XXX
  120. // Save the results before we commit.
  121. if err := blockExec.store.SaveABCIResponses(block.Height, abciResponses); err != nil {
  122. return state, 0, err
  123. }
  124. fail.Fail() // XXX
  125. // validate the validator updates and convert to tendermint types
  126. abciValUpdates := abciResponses.EndBlock.ValidatorUpdates
  127. err = validateValidatorUpdates(abciValUpdates, state.ConsensusParams.Validator)
  128. if err != nil {
  129. return state, 0, fmt.Errorf("error in validator updates: %v", err)
  130. }
  131. validatorUpdates, err := types.PB2TM.ValidatorUpdates(abciValUpdates)
  132. if err != nil {
  133. return state, 0, err
  134. }
  135. if len(validatorUpdates) > 0 {
  136. blockExec.logger.Info("Updates to validators", "updates", types.ValidatorListString(validatorUpdates))
  137. }
  138. // Update the state with the block and responses.
  139. state, err = updateState(state, blockID, &block.Header, abciResponses, validatorUpdates)
  140. if err != nil {
  141. return state, 0, fmt.Errorf("commit failed for application: %v", err)
  142. }
  143. // Lock mempool, commit app state, update mempoool.
  144. appHash, retainHeight, err := blockExec.Commit(state, block, abciResponses.DeliverTxs)
  145. if err != nil {
  146. return state, 0, fmt.Errorf("commit failed for application: %v", err)
  147. }
  148. // Update evpool with the latest state.
  149. blockExec.evpool.Update(state)
  150. fail.Fail() // XXX
  151. // Update the app hash and save the state.
  152. state.AppHash = appHash
  153. if err := blockExec.store.Save(state); err != nil {
  154. return state, 0, err
  155. }
  156. fail.Fail() // XXX
  157. // Events are fired after everything else.
  158. // NOTE: if we crash between Commit and Save, events wont be fired during replay
  159. fireEvents(blockExec.logger, blockExec.eventBus, block, abciResponses, validatorUpdates)
  160. return state, retainHeight, nil
  161. }
  162. // Commit locks the mempool, runs the ABCI Commit message, and updates the
  163. // mempool.
  164. // It returns the result of calling abci.Commit (the AppHash) and the height to retain (if any).
  165. // The Mempool must be locked during commit and update because state is
  166. // typically reset on Commit and old txs must be replayed against committed
  167. // state before new txs are run in the mempool, lest they be invalid.
  168. func (blockExec *BlockExecutor) Commit(
  169. state State,
  170. block *types.Block,
  171. deliverTxResponses []*abci.ResponseDeliverTx,
  172. ) ([]byte, int64, error) {
  173. blockExec.mempool.Lock()
  174. defer blockExec.mempool.Unlock()
  175. // while mempool is Locked, flush to ensure all async requests have completed
  176. // in the ABCI app before Commit.
  177. err := blockExec.mempool.FlushAppConn()
  178. if err != nil {
  179. blockExec.logger.Error("Client error during mempool.FlushAppConn", "err", err)
  180. return nil, 0, err
  181. }
  182. // Commit block, get hash back
  183. res, err := blockExec.proxyApp.CommitSync()
  184. if err != nil {
  185. blockExec.logger.Error(
  186. "Client error during proxyAppConn.CommitSync",
  187. "err", err,
  188. )
  189. return nil, 0, err
  190. }
  191. // ResponseCommit has no error code - just data
  192. blockExec.logger.Info(
  193. "Committed state",
  194. "height", block.Height,
  195. "txs", len(block.Txs),
  196. "appHash", fmt.Sprintf("%X", res.Data),
  197. )
  198. // Update mempool.
  199. err = blockExec.mempool.Update(
  200. block.Height,
  201. block.Txs,
  202. deliverTxResponses,
  203. TxPreCheck(state),
  204. TxPostCheck(state),
  205. )
  206. return res.Data, res.RetainHeight, err
  207. }
  208. //---------------------------------------------------------
  209. // Helper functions for executing blocks and updating state
  210. // Executes block's transactions on proxyAppConn.
  211. // Returns a list of transaction results and updates to the validator set
  212. func execBlockOnProxyApp(
  213. logger log.Logger,
  214. proxyAppConn proxy.AppConnConsensus,
  215. block *types.Block,
  216. store Store,
  217. initialHeight int64,
  218. byzVals []abci.Evidence,
  219. ) (*tmstate.ABCIResponses, error) {
  220. var validTxs, invalidTxs = 0, 0
  221. txIndex := 0
  222. abciResponses := new(tmstate.ABCIResponses)
  223. dtxs := make([]*abci.ResponseDeliverTx, len(block.Txs))
  224. abciResponses.DeliverTxs = dtxs
  225. // Execute transactions and get hash.
  226. proxyCb := func(req *abci.Request, res *abci.Response) {
  227. if r, ok := res.Value.(*abci.Response_DeliverTx); ok {
  228. // TODO: make use of res.Log
  229. // TODO: make use of this info
  230. // Blocks may include invalid txs.
  231. txRes := r.DeliverTx
  232. if txRes.Code == abci.CodeTypeOK {
  233. validTxs++
  234. } else {
  235. logger.Debug("Invalid tx", "code", txRes.Code, "log", txRes.Log)
  236. invalidTxs++
  237. }
  238. abciResponses.DeliverTxs[txIndex] = txRes
  239. txIndex++
  240. }
  241. }
  242. proxyAppConn.SetResponseCallback(proxyCb)
  243. commitInfo := getBeginBlockValidatorInfo(block, store, initialHeight)
  244. // Begin block
  245. var err error
  246. pbh := block.Header.ToProto()
  247. if pbh == nil {
  248. return nil, errors.New("nil header")
  249. }
  250. abciResponses.BeginBlock, err = proxyAppConn.BeginBlockSync(abci.RequestBeginBlock{
  251. Hash: block.Hash(),
  252. Header: *pbh,
  253. LastCommitInfo: commitInfo,
  254. ByzantineValidators: byzVals,
  255. })
  256. if err != nil {
  257. logger.Error("Error in proxyAppConn.BeginBlock", "err", err)
  258. return nil, err
  259. }
  260. // Run txs of block.
  261. for _, tx := range block.Txs {
  262. proxyAppConn.DeliverTxAsync(abci.RequestDeliverTx{Tx: tx})
  263. if err := proxyAppConn.Error(); err != nil {
  264. return nil, err
  265. }
  266. }
  267. // End block.
  268. abciResponses.EndBlock, err = proxyAppConn.EndBlockSync(abci.RequestEndBlock{Height: block.Height})
  269. if err != nil {
  270. logger.Error("Error in proxyAppConn.EndBlock", "err", err)
  271. return nil, err
  272. }
  273. logger.Info("Executed block", "height", block.Height, "validTxs", validTxs, "invalidTxs", invalidTxs)
  274. return abciResponses, nil
  275. }
  276. func getBeginBlockValidatorInfo(block *types.Block, store Store,
  277. initialHeight int64) abci.LastCommitInfo {
  278. voteInfos := make([]abci.VoteInfo, block.LastCommit.Size())
  279. // Initial block -> LastCommitInfo.Votes are empty.
  280. // Remember that the first LastCommit is intentionally empty, so it makes
  281. // sense for LastCommitInfo.Votes to also be empty.
  282. if block.Height > initialHeight {
  283. lastValSet, err := store.LoadValidators(block.Height - 1)
  284. if err != nil {
  285. panic(err)
  286. }
  287. // Sanity check that commit size matches validator set size - only applies
  288. // after first block.
  289. var (
  290. commitSize = block.LastCommit.Size()
  291. valSetLen = len(lastValSet.Validators)
  292. )
  293. if commitSize != valSetLen {
  294. panic(fmt.Sprintf("commit size (%d) doesn't match valset length (%d) at height %d\n\n%v\n\n%v",
  295. commitSize, valSetLen, block.Height, block.LastCommit.Signatures, lastValSet.Validators))
  296. }
  297. for i, val := range lastValSet.Validators {
  298. commitSig := block.LastCommit.Signatures[i]
  299. voteInfos[i] = abci.VoteInfo{
  300. Validator: types.TM2PB.Validator(val),
  301. SignedLastBlock: !commitSig.Absent(),
  302. }
  303. }
  304. }
  305. return abci.LastCommitInfo{
  306. Round: block.LastCommit.Round,
  307. Votes: voteInfos,
  308. }
  309. }
  310. func validateValidatorUpdates(abciUpdates []abci.ValidatorUpdate,
  311. params tmproto.ValidatorParams) error {
  312. for _, valUpdate := range abciUpdates {
  313. if valUpdate.GetPower() < 0 {
  314. return fmt.Errorf("voting power can't be negative %v", valUpdate)
  315. } else if valUpdate.GetPower() == 0 {
  316. // continue, since this is deleting the validator, and thus there is no
  317. // pubkey to check
  318. continue
  319. }
  320. // Check if validator's pubkey matches an ABCI type in the consensus params
  321. pk, err := cryptoenc.PubKeyFromProto(valUpdate.PubKey)
  322. if err != nil {
  323. return err
  324. }
  325. if !types.IsValidPubkeyType(params, pk.Type()) {
  326. return fmt.Errorf("validator %v is using pubkey %s, which is unsupported for consensus",
  327. valUpdate, pk.Type())
  328. }
  329. }
  330. return nil
  331. }
  332. // updateState returns a new State updated according to the header and responses.
  333. func updateState(
  334. state State,
  335. blockID types.BlockID,
  336. header *types.Header,
  337. abciResponses *tmstate.ABCIResponses,
  338. validatorUpdates []*types.Validator,
  339. ) (State, error) {
  340. // Copy the valset so we can apply changes from EndBlock
  341. // and update s.LastValidators and s.Validators.
  342. nValSet := state.NextValidators.Copy()
  343. // Update the validator set with the latest abciResponses.
  344. lastHeightValsChanged := state.LastHeightValidatorsChanged
  345. if len(validatorUpdates) > 0 {
  346. err := nValSet.UpdateWithChangeSet(validatorUpdates)
  347. if err != nil {
  348. return state, fmt.Errorf("error changing validator set: %v", err)
  349. }
  350. // Change results from this height but only applies to the next next height.
  351. lastHeightValsChanged = header.Height + 1 + 1
  352. }
  353. // Update validator proposer priority and set state variables.
  354. nValSet.IncrementProposerPriority(1)
  355. // Update the params with the latest abciResponses.
  356. nextParams := state.ConsensusParams
  357. lastHeightParamsChanged := state.LastHeightConsensusParamsChanged
  358. if abciResponses.EndBlock.ConsensusParamUpdates != nil {
  359. // NOTE: must not mutate s.ConsensusParams
  360. nextParams = types.UpdateConsensusParams(state.ConsensusParams, abciResponses.EndBlock.ConsensusParamUpdates)
  361. err := types.ValidateConsensusParams(nextParams)
  362. if err != nil {
  363. return state, fmt.Errorf("error updating consensus params: %v", err)
  364. }
  365. state.Version.Consensus.App = nextParams.Version.AppVersion
  366. // Change results from this height but only applies to the next height.
  367. lastHeightParamsChanged = header.Height + 1
  368. }
  369. nextVersion := state.Version
  370. // NOTE: the AppHash has not been populated.
  371. // It will be filled on state.Save.
  372. return State{
  373. Version: nextVersion,
  374. ChainID: state.ChainID,
  375. InitialHeight: state.InitialHeight,
  376. LastBlockHeight: header.Height,
  377. LastBlockID: blockID,
  378. LastBlockTime: header.Time,
  379. NextValidators: nValSet,
  380. Validators: state.NextValidators.Copy(),
  381. LastValidators: state.Validators.Copy(),
  382. LastHeightValidatorsChanged: lastHeightValsChanged,
  383. ConsensusParams: nextParams,
  384. LastHeightConsensusParamsChanged: lastHeightParamsChanged,
  385. LastResultsHash: ABCIResponsesResultsHash(abciResponses),
  386. AppHash: nil,
  387. }, nil
  388. }
  389. // Fire NewBlock, NewBlockHeader.
  390. // Fire TxEvent for every tx.
  391. // NOTE: if Tendermint crashes before commit, some or all of these events may be published again.
  392. func fireEvents(
  393. logger log.Logger,
  394. eventBus types.BlockEventPublisher,
  395. block *types.Block,
  396. abciResponses *tmstate.ABCIResponses,
  397. validatorUpdates []*types.Validator,
  398. ) {
  399. if err := eventBus.PublishEventNewBlock(types.EventDataNewBlock{
  400. Block: block,
  401. ResultBeginBlock: *abciResponses.BeginBlock,
  402. ResultEndBlock: *abciResponses.EndBlock,
  403. }); err != nil {
  404. logger.Error("Error publishing new block", "err", err)
  405. }
  406. if err := eventBus.PublishEventNewBlockHeader(types.EventDataNewBlockHeader{
  407. Header: block.Header,
  408. NumTxs: int64(len(block.Txs)),
  409. ResultBeginBlock: *abciResponses.BeginBlock,
  410. ResultEndBlock: *abciResponses.EndBlock,
  411. }); err != nil {
  412. logger.Error("Error publishing new block header", "err", err)
  413. }
  414. if len(block.Evidence.Evidence) != 0 {
  415. for _, ev := range block.Evidence.Evidence {
  416. if err := eventBus.PublishEventNewEvidence(types.EventDataNewEvidence{
  417. Evidence: ev,
  418. Height: block.Height,
  419. }); err != nil {
  420. logger.Error("Error publishing new evidence", "err", err)
  421. }
  422. }
  423. }
  424. for i, tx := range block.Data.Txs {
  425. if err := eventBus.PublishEventTx(types.EventDataTx{TxResult: abci.TxResult{
  426. Height: block.Height,
  427. Index: uint32(i),
  428. Tx: tx,
  429. Result: *(abciResponses.DeliverTxs[i]),
  430. }}); err != nil {
  431. logger.Error("Error publishing event TX", "err", err)
  432. }
  433. }
  434. if len(validatorUpdates) > 0 {
  435. if err := eventBus.PublishEventValidatorSetUpdates(
  436. types.EventDataValidatorSetUpdates{ValidatorUpdates: validatorUpdates}); err != nil {
  437. logger.Error("Error publishing event", "err", err)
  438. }
  439. }
  440. }
  441. //----------------------------------------------------------------------------------------------------
  442. // Execute block without state. TODO: eliminate
  443. // ExecCommitBlock executes and commits a block on the proxyApp without validating or mutating the state.
  444. // It returns the application root hash (result of abci.Commit).
  445. func ExecCommitBlock(
  446. appConnConsensus proxy.AppConnConsensus,
  447. block *types.Block,
  448. logger log.Logger,
  449. store Store,
  450. initialHeight int64,
  451. ) ([]byte, error) {
  452. _, err := execBlockOnProxyApp(logger, appConnConsensus, block, store, initialHeight, []abci.Evidence{})
  453. if err != nil {
  454. logger.Error("Error executing block on proxy app", "height", block.Height, "err", err)
  455. return nil, err
  456. }
  457. // Commit block, get hash back
  458. res, err := appConnConsensus.CommitSync()
  459. if err != nil {
  460. logger.Error("Client error during proxyAppConn.CommitSync", "err", res)
  461. return nil, err
  462. }
  463. // ResponseCommit has no error or log, just data
  464. return res.Data, nil
  465. }