Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .changelog/unreleased/miscellaneous/4712-comet-max-tx-size.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Make CometBFT max_tx_bytes configurable
([\#4712](https://github.com/anoma/namada/issues/4712))
2 changes: 1 addition & 1 deletion crates/node/src/tendermint_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ async fn update_tendermint_config(
// 1 MiB is a reasonable value that allows governance proposal txs
// containing wasm code to be proposed by a leading validator
// during some round's start
config.mempool.max_tx_bytes = 1024 * 1024;
// https://github.com/cometbft/cometbft/blob/c653eee08d7f2c44bd87fcca0b8a16666cd08fee/config/config.go#L1016

// Hold 50x the max amount of txs in a block.
#[allow(clippy::arithmetic_side_effects)]
Expand Down
Loading