Skip to content

Commit

Permalink
release: prepare v0.34.20-rc0 (#8888)
Browse files Browse the repository at this point in the history
Co-authored-by: Callum Waters <cmwaters19@gmail.com>
  • Loading branch information
tnasu and cmwaters committed Jul 13, 2023
1 parent 5cef3a8 commit 2879cb5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,12 @@ func DefaultFuzzConnConfig() *FuzzConnConfig {

// MempoolConfig defines the configuration options for the Ostracon 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"`
Expand Down
8 changes: 8 additions & 0 deletions config/toml.go
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,14 @@ statesync_recv_buf_size = {{ .P2P.StatesyncRecvBufSize }}
#######################################################
[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 }}"
Expand Down

0 comments on commit 2879cb5

Please sign in to comment.