release: prepare v0.34.20-rc0 (#8888)

This commit is contained in:
Callum Waters
2022-06-27 18:44:21 +02:00
committed by GitHub
parent 9e14e954f9
commit 5e354a3a57
5 changed files with 32 additions and 5 deletions

View File

@@ -681,6 +681,12 @@ func DefaultFuzzConnConfig() *FuzzConnConfig {
// MempoolConfig defines the configuration options for the Tendermint mempool
type MempoolConfig struct {
// Mempool version to use:
// 1) "v0" - (default) FIFO mempool.
// 2) "v1" - prioritized mempool.
// WARNING: There's a known memory leak with the prioritized mempool
// that the team are working on. Read more here:
// https://github.com/tendermint/tendermint/issues/8775
Version string `mapstructure:"version"`
RootDir string `mapstructure:"home"`
Recheck bool `mapstructure:"recheck"`

View File

@@ -342,6 +342,14 @@ dial_timeout = "{{ .P2P.DialTimeout }}"
#######################################################
[mempool]
# Mempool version to use:
# 1) "v0" - (default) FIFO mempool.
# 2) "v1" - prioritized mempool.
# WARNING: There's a known memory leak with the prioritized mempool
# that the team are working on. Read more here:
# https://github.com/tendermint/tendermint/issues/8775
version = "{{ .Mempool.Version }}"
recheck = {{ .Mempool.Recheck }}
broadcast = {{ .Mempool.Broadcast }}
wal_dir = "{{ js .Mempool.WalPath }}"