Skip to content

Commit

Permalink
Set maxPeersAcceptedInPruneMsg to 0 (#8056)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov authored Mar 8, 2024
1 parent 348e4e0 commit 86c2f3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
[![Twitter Follow](https://img.shields.io/twitter/follow/Teku_Consensys)](https://twitter.com/Teku_Consensys)
[![GitPOAP Badge](https://public-api.gitpoap.io/v1/repo/ConsenSys/teku/badge)](https://www.gitpoap.io/gh/ConsenSys/teku)

Teku is an open-source Ethereum consensus client written in Java and containing a full beacon node and validator client implementation.
Teku is an open-source Ethereum consensus client written in Java and containing a full beacon node and validator client implementation.

See the [Changelog](https://github.com/Consensys/teku/releases) for details of the latest releases and upcoming breaking changes.

## Useful links
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private static void addGossipParamsMaxValues(final GossipParamsBuilder builder)
.maxGraftMessages(200)
.maxPruneMessages(200)
.maxPeersSentInPruneMsg(0)
.maxPeersAcceptedInPruneMsg(Integer.MAX_VALUE)
.maxPeersAcceptedInPruneMsg(0)
.maxIHaveLength(5000)
.maxIWantMessageIds(5000);
}
Expand Down

0 comments on commit 86c2f3d

Please sign in to comment.