diff --git a/src/cl/lighthouse/lighthouse_launcher.star b/src/cl/lighthouse/lighthouse_launcher.star index 0d3e578c7..ff98c7d4e 100644 --- a/src/cl/lighthouse/lighthouse_launcher.star +++ b/src/cl/lighthouse/lighthouse_launcher.star @@ -294,8 +294,6 @@ def get_beacon_config( "--execution-endpoints=" + EXECUTION_ENGINE_ENDPOINT, "--jwt-secrets=" + constants.JWT_MOUNT_PATH_ON_CONTAINER, "--suggested-fee-recipient=" + constants.VALIDATING_REWARDS_ACCOUNT, - # Set per Paris' recommendation to reduce noise in the logs - "--subscribe-all-subnets", # vvvvvvvvvvvvvvvvvvv METRICS CONFIG vvvvvvvvvvvvvvvvvvvvv "--metrics", "--metrics-address=0.0.0.0", diff --git a/src/cl/lodestar/lodestar_launcher.star b/src/cl/lodestar/lodestar_launcher.star index 85b0a620a..4c03af0ad 100644 --- a/src/cl/lodestar/lodestar_launcher.star +++ b/src/cl/lodestar/lodestar_launcher.star @@ -283,8 +283,6 @@ def get_beacon_config( "--enr.ip=" + port_publisher.nat_exit_ip, "--enr.tcp={0}".format(discovery_port), "--enr.udp={0}".format(discovery_port), - # Set per Pari's recommendation to reduce noise in the logs - "--subscribeAllSubnets=true", "--jwt-secret=" + constants.JWT_MOUNT_PATH_ON_CONTAINER, # vvvvvvvvvvvvvvvvvvv METRICS CONFIG vvvvvvvvvvvvvvvvvvvvv "--metrics", diff --git a/src/cl/teku/teku_launcher.star b/src/cl/teku/teku_launcher.star index 9e2339424..9362e12d0 100644 --- a/src/cl/teku/teku_launcher.star +++ b/src/cl/teku/teku_launcher.star @@ -280,8 +280,6 @@ def get_beacon_config( "ARCHIVE" if constants.ARCHIVE_MODE else "PRUNE" ), "--p2p-enabled=true", - # Set per Pari's recommendation, to reduce noise in the logs - "--p2p-subscribe-all-subnets-enabled=true", "--p2p-peer-lower-bound={0}".format(MIN_PEERS), "--p2p-advertised-ip=" + port_publisher.nat_exit_ip, "--p2p-discovery-site-local-addresses-enabled=true",