From 173c4eb7cf0d656938380ef3d16d9d0c3b177d5b Mon Sep 17 00:00:00 2001 From: Stefan Bratanov Date: Mon, 18 Sep 2023 14:58:09 +0800 Subject: [PATCH] remove comment --- .../logic/versions/deneb/helpers/BeaconStateAccessorsDeneb.java | 1 - 1 file changed, 1 deletion(-) diff --git a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/logic/versions/deneb/helpers/BeaconStateAccessorsDeneb.java b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/logic/versions/deneb/helpers/BeaconStateAccessorsDeneb.java index 19b9fe35813..bfe9c54194f 100644 --- a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/logic/versions/deneb/helpers/BeaconStateAccessorsDeneb.java +++ b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/logic/versions/deneb/helpers/BeaconStateAccessorsDeneb.java @@ -37,7 +37,6 @@ public BeaconStateAccessorsDeneb( /** EIP-7514: Add Max Epoch Churn Limit */ @Override public UInt64 getValidatorActivationChurnLimit(final BeaconState state) { - // Return the validator activation churn limit for the current epoch. return getValidatorChurnLimit(state).min(denebConfig.getMaxPerEpochActivationChurnLimit()); }