Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add missing modifications from tendermint fork #4

Merged
merged 14 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Agoric.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Agoric README

This fork's primary development branch is `Agoric`.

Tags are of the form `<upstream-tag>-alpha.agoric.<N>` to make a series of revisions `<N>` on a given `<upstream-tag>`. As we go on, `alpha` might be replaced by `beta`, `stable`, `gold`, etc.
54 changes: 54 additions & 0 deletions CHANGELOG-Agoric.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!--
Guiding Principles:

Changelogs are for humans, not machines.
There should be an entry for every single version.
The same types of changes should be grouped.
Versions and sections should be linkable.
The latest version comes first.
The release date of each version is displayed.
Mention whether you follow Semantic Versioning.

Usage:

Change log entries are to be added to the Unreleased section under the
appropriate stanza (see below). Each entry should ideally include a tag and
the Github issue reference in the following format:

* (<tag>) \#<issue-number> message

The issue numbers will later be link-ified during the release process so you do
not have to worry about including a link manually, but you can if you wish.

Types of changes (Stanzas):

"Features" for new features.
"Improvements" for changes in existing functionality.
"Deprecated" for soon-to-be removed features.
"Bug Fixes" for any bug fixes.
"Client Breaking" for breaking CLI commands and REST routes.
"State Machine Breaking" for breaking the AppState

Ref: https://keepachangelog.com/en/1.0.0/
-->

# Changelog

## [Unreleased]

## [v0.34.23-alpha.agoric.2]

* Agoric/agoric-sdk\#6945 Cherrypick fix for informalsystems/tendermint#4.

## [v0.34.23-alpha.agoric.1]

* Agoric/agoric-sdk\#6305 Merge `tendermint/tendermint` v0.34.23

## [v0.34.21-alpha.agoric.1]

* Agoric/agoric-sdk\#6305 Merge `tendermint/tendermint` v0.34.21.

## [v0.34.14-alpha.agoric.1]

* Merge `tendermint/tendermint` v0.34.23.
* Add committing client for greater query concurrency.
6 changes: 5 additions & 1 deletion abci/client/committing_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ var _ Client = (*committingClient)(nil)
// case of malicious tx or query). It only makes sense for publicly exposed
// methods like CheckTx (/broadcast_tx_* RPC endpoint) or Query (/abci_query
// RPC endpoint), but defers are used everywhere for the sake of consistency.
//
// NOTE: Keep in sync with changes to local_client.
type committingClient struct {
service.BaseService

Expand Down Expand Up @@ -383,5 +385,7 @@ func (app *committingClient) ApplySnapshotChunkSync(
func (app *committingClient) callback(req *types.Request, res *types.Response) *ReqRes {
// Never blocked
app.Callback(req, res)
return newLocalReqRes(req, res)
rr := newLocalReqRes(req, res)
rr.callbackInvoked = true
return rr
}
Loading