From 629cdc7f3dd1e7b944e3005e5d1eb6abb6fb45d7 Mon Sep 17 00:00:00 2001 From: Jasmina Malicevic Date: Wed, 2 Nov 2022 10:49:25 +0100 Subject: [PATCH] spec/abci: Removed reference to Finalize block (#9656) * spec/abci: Removed reference to Finalize block * Update spec/abci/abci++_methods.md Co-authored-by: Sergio Mena Co-authored-by: Sergio Mena --- spec/abci/abci++_methods.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/abci/abci++_methods.md b/spec/abci/abci++_methods.md index 0da22a69c..8c82c85e8 100644 --- a/spec/abci/abci++_methods.md +++ b/spec/abci/abci++_methods.md @@ -44,7 +44,7 @@ title: Methods | version | string | The application software semantic version | 2 | | app_version | uint64 | The application protocol version | 3 | | last_block_height | int64 | Latest height for which the app persisted its state | 4 | - | last_block_app_hash | bytes | Latest AppHash returned by `FinalizeBlock` | 5 | + | last_block_app_hash | bytes | Latest AppHash returned by `Commit` | 5 | * **Usage**: * Return information about the application state. @@ -52,7 +52,7 @@ title: Methods that happens on startup or on recovery. * The returned `app_version` will be included in the Header of every block. * Tendermint expects `last_block_app_hash` and `last_block_height` to - be updated during `FinalizeBlock` and persisted during `Commit`. + be updated and persisted during `Commit`. > Note: Semantic version is a reference to [semantic versioning](https://semver.org/). Semantic versions in info will be displayed as X.X.x.