Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: increase max-recv-msg-size default to 20 MiB (backport celestia…
…org#4205) (celestiaorg#4221) Closes celestiaorg#4204 Note this won't modify already existing `app.toml` files so node operators need to modify their local `app.toml`. Example command: ```shell sed -i.bak 's/^max-recv-msg-size = "10485760"/max-recv-msg-size = "20971520"/' ~/.celestia-app/config/app.toml ``` ## Testing ```shell # Before $ cat ~/.celestia-app/config/app.toml | grep max-recv max-recv-msg-size = "10485760" # After $ ./scripts/single-node.sh $ cat ~/.celestia-app/config/app.toml | grep max-recv max-recv-msg-size = "20971520" ```<hr>This is an automatic backport of pull request celestiaorg#4205 done by [Mergify](https://mergify.com). Co-authored-by: Rootul P <rootulp@gmail.com>
- Loading branch information