Skip to content

Commit

Permalink
Merge branch 'master' into simplify-BlobSidecarAvailabilityChecker
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr authored Dec 9, 2024
2 parents d0b52e6 + a04f3ff commit ce5d599
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -586,13 +586,20 @@ public SafeFuture<List<SubmitDataError>> sendSignedAttestations(
}

private SafeFuture<InternalValidationResult> processAttestation(final Attestation attestation) {
final ValidatableAttestation validatableAttestation =
ValidatableAttestation.fromValidator(spec, attestation);
return attestationManager
.addAttestation(ValidatableAttestation.fromValidator(spec, attestation), Optional.empty())
.addAttestation(validatableAttestation, Optional.empty())
.thenPeek(
result -> {
if (!result.isReject()) {
dutyMetrics.onAttestationPublished(attestation.getData().getSlot());
performanceTracker.saveProducedAttestation(attestation);
// When saving the attestation in performance tracker, we want to make sure we save
// the converted attestation.
// The conversion happens during processing and is saved in the validatable
// attestation.
final Attestation convertedAttestation = validatableAttestation.getAttestation();
dutyMetrics.onAttestationPublished(convertedAttestation.getData().getSlot());
performanceTracker.saveProducedAttestation(convertedAttestation);
} else {
VALIDATOR_LOGGER.producedInvalidAttestation(
attestation.getData().getSlot(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
package tech.pegasys.teku.validator.coordinator.performance;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkState;

import com.google.common.annotations.VisibleForTesting;
import it.unimi.dsi.fastutil.ints.Int2IntMap;
Expand Down Expand Up @@ -424,6 +425,7 @@ private SafeFuture<Map<UInt64, List<Attestation>>> getAttestationsIncludedInEpoc

@Override
public void saveProducedAttestation(final Attestation attestation) {
checkState(!attestation.isSingleAttestation(), "Single attestation is not supported");
final UInt64 epoch = spec.computeEpochAtSlot(attestation.getData().getSlot());
final Set<Attestation> attestationsInEpoch =
producedAttestationsByEpoch.computeIfAbsent(epoch, __ -> concurrentSet());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,53 @@ public void sendSignedAttestations_shouldAddAttestationToAttestationManager() {
.addAttestation(ValidatableAttestation.from(spec, attestation), Optional.empty());
}

@Test
void sendSignedAttestations_shouldSaveConvertedAttestationFromSingleAttestation() {
spec = TestSpecFactory.createMinimalElectra();
dataStructureUtil = new DataStructureUtil(spec);
validatorApiHandler =
new ValidatorApiHandler(
chainDataProvider,
nodeDataProvider,
networkDataProvider,
chainDataClient,
syncStateProvider,
blockFactory,
attestationPool,
attestationManager,
attestationTopicSubscriptions,
activeValidatorTracker,
dutyMetrics,
performanceTracker,
spec,
forkChoiceTrigger,
proposersDataManager,
syncCommitteeMessagePool,
syncCommitteeContributionPool,
syncCommitteeSubscriptionManager,
blockProductionPerformanceFactory,
blockPublisher);

final Attestation attestation = dataStructureUtil.randomSingleAttestation();
final Attestation convertedAttestation = dataStructureUtil.randomAttestation();
doAnswer(
invocation -> {
invocation
.getArgument(0, ValidatableAttestation.class)
.convertToAggregatedFormatFromSingleAttestation(convertedAttestation);
return completedFuture(InternalValidationResult.ACCEPT);
})
.when(attestationManager)
.addAttestation(any(ValidatableAttestation.class), any());

final SafeFuture<List<SubmitDataError>> result =
validatorApiHandler.sendSignedAttestations(List.of(attestation));
assertThat(result).isCompletedWithValue(emptyList());

verify(dutyMetrics).onAttestationPublished(convertedAttestation.getData().getSlot());
verify(performanceTracker).saveProducedAttestation(convertedAttestation);
}

@Test
void sendSignedAttestations_shouldAddToDutyMetricsAndPerformanceTrackerWhenNotInvalid() {
final Attestation attestation = dataStructureUtil.randomAttestation();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.collect.ImmutableMap;
import java.util.List;
import java.util.Optional;
import tech.pegasys.teku.ethtests.finder.TestDefinition;
import tech.pegasys.teku.infrastructure.ssz.SszData;
Expand Down Expand Up @@ -68,9 +67,6 @@ public class OperationsTestExecutor<T extends SszData> implements TestExecutor {

public static final String EXPECTED_STATE_FILE = "post.ssz_snappy";

// TODO remove https://github.com/Consensys/teku/issues/8892
private static final List<String> IGNORED_TEST = List.of("invalid_nonset_bits_for_one_committee");

private enum Operation {
ATTESTER_SLASHING,
PROPOSER_SLASHING,
Expand Down Expand Up @@ -148,11 +144,6 @@ public OperationsTestExecutor(final String dataFileName, final Operation operati

@Override
public void runTest(final TestDefinition testDefinition) throws Exception {
// TODO remove https://github.com/Consensys/teku/issues/8892
if (IGNORED_TEST.contains(testDefinition.getTestName())) {
return;
}

final BeaconState preState = loadStateFromSsz(testDefinition, "pre.ssz_snappy");

final DefaultOperationProcessor standardProcessor =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import java.util.List;
import java.util.Optional;
import java.util.function.Supplier;
import java.util.stream.IntStream;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.tuweni.bytes.Bytes32;
Expand Down Expand Up @@ -725,16 +726,25 @@ private Optional<OperationInvalidReason> checkCommittees(
final BeaconState state,
final UInt64 slot,
final SszBitlist aggregationBits) {
int participantsCount = 0;
int committeeOffset = 0;
for (final UInt64 committeeIndex : committeeIndices) {
if (committeeIndex.isGreaterThanOrEqualTo(committeeCountPerSlot)) {
return Optional.of(AttestationInvalidReason.COMMITTEE_INDEX_TOO_HIGH);
}
final IntList committee =
beaconStateAccessorsElectra.getBeaconCommittee(state, slot, committeeIndex);
participantsCount += committee.size();
final int currentCommitteeOffset = committeeOffset;
final boolean committeeHasAtLeastOneAttester =
IntStream.range(0, committee.size())
.anyMatch(
committeeParticipantIndex ->
aggregationBits.isSet(currentCommitteeOffset + committeeParticipantIndex));
if (!committeeHasAtLeastOneAttester) {
return Optional.of(AttestationInvalidReason.PARTICIPANTS_COUNT_MISMATCH);
}
committeeOffset += committee.size();
}
if (participantsCount != aggregationBits.size()) {
if (committeeOffset != aggregationBits.size()) {
return Optional.of(AttestationInvalidReason.PARTICIPANTS_COUNT_MISMATCH);
}
return Optional.empty();
Expand Down

0 comments on commit ce5d599

Please sign in to comment.