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 (#4205)
Closes #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" ``` (cherry picked from commit c620c12)
- Loading branch information