Skip to content

Commit 777c9dc

Browse files
authored
Promote GetNewBlockV3 and enable by default (#8493)
* Remove -X prefix Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com> * add changelog Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com> --------- Signed-off-by: Gabriel Fukushima <gabrielfukushima@gmail.com>
1 parent 98a1cc4 commit 777c9dc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@
2323
- When `p2p-subscribe-all-subnets-enabled`, `p2p-peer-lower-bound` now defaults to 60 (previously 64), and `p2p-peer-upper-bound` now defaults to 80 (previously 100).
2424
- When `p2p-subscribe-all-subnets-enabled`, (`Xnetwork-async-p2p-max-queue`, `Xnetwork-async-beaconchain-max-queue`, `Xp2p-batch-verify-signatures-queue-capacity`) now default to 40_000 (previously 10_000)
2525
- When `p2p-subscribe-all-subnets-enabled`, `Xvalidator-executor-max-queue-size` now defaults to 60_000 (previously 40_000).
26+
- Enable [GetNewBlockV3](https://ethereum.github.io/beacon-APIs/?urls.primaryName=dev#/ValidatorRequiredApi/produceBlockV3) by default.
2627

2728
### Bug Fixes

validator/api/src/main/java/tech/pegasys/teku/validator/api/ValidatorConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class ValidatorConfig {
4646
List.of(URI.create("http://127.0.0.1:" + DEFAULT_REST_API_PORT));
4747
public static final boolean DEFAULT_FAILOVERS_SEND_SUBNET_SUBSCRIPTIONS_ENABLED = true;
4848
public static final boolean DEFAULT_FAILOVERS_PUBLISH_SIGNED_DUTIES_ENABLED = true;
49-
public static final boolean DEFAULT_BLOCK_V3_ENABLED = false;
49+
public static final boolean DEFAULT_BLOCK_V3_ENABLED = true;
5050
public static final boolean DEFAULT_EXIT_WHEN_NO_VALIDATOR_KEYS_ENABLED = false;
5151
public static final boolean DEFAULT_VALIDATOR_CLIENT_SSZ_BLOCKS_ENABLED = true;
5252
public static final boolean DEFAULT_VALIDATOR_CLIENT_USE_POST_VALIDATORS_ENDPOINT_ENABLED = true;

0 commit comments

Comments
 (0)