Skip to content

Commit

Permalink
Increase beta same IP connection limits (#4657)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev authored Jun 26, 2024
1 parent 6006d7c commit 4e3c5e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/node/network.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class network_config final
public:
explicit network_config (nano::network_constants const & network)
{
if (network.is_dev_network ())
if (network.is_dev_network () || network.is_beta_network ())
{
// During tests, all peers are on localhost
max_peers_per_ip = 256;
Expand Down

0 comments on commit 4e3c5e9

Please sign in to comment.