From 4d4c0c71bc83b46e5343339b30af236947a96e3b Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Thu, 21 Mar 2024 15:06:53 +0100 Subject: [PATCH] chore: bump abci version to 0.26.2 --- proto/tendermint/abci/types.proto | 2 +- version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/tendermint/abci/types.proto b/proto/tendermint/abci/types.proto index 40569a19b..85c0b2fc7 100644 --- a/proto/tendermint/abci/types.proto +++ b/proto/tendermint/abci/types.proto @@ -219,7 +219,7 @@ message RequestApplySnapshotChunk { // their propose timeout goes off. // - As a result of executing the prepared proposal, the Application may produce header events or transaction events. // The Application must keep those events until a block is decided and then pass them on to Tenderdash via -// `ResponseFinalizeBlock`. +// `ResponsePrepareProposal`. // - As a sanity check, Tenderdash will check the returned parameters for validity if the Application modified them. // In particular, `ResponsePrepareProposal.tx_records` will be deemed invalid if // - There is a duplicate transaction in the list. diff --git a/version/version.go b/version/version.go index 38e381015..008a74f3d 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const ( // when not using git describe. It is formatted with semantic versioning. TMVersionDefault = "0.14.0-dev.4" // ABCISemVer is the semantic version of the ABCI library - ABCISemVer = "0.26.1" + ABCISemVer = "0.26.2" ABCIVersion = ABCISemVer )