diff --git a/packages/beacon-node/src/api/impl/beacon/pool/index.ts b/packages/beacon-node/src/api/impl/beacon/pool/index.ts index 6900b12c1695..266e8be17cdd 100644 --- a/packages/beacon-node/src/api/impl/beacon/pool/index.ts +++ b/packages/beacon-node/src/api/impl/beacon/pool/index.ts @@ -116,11 +116,7 @@ export function getBeaconPoolApi({ try { // Ignore even if the change exists and reprocess await validateBlsToExecutionChange(chain, blsToExecutionChange, true); - const preCapella = !( - chain.clock.currentEpoch >= chain.config.CAPELLA_FORK_EPOCH && - // TODO: Remove this condition once testing is done - network.isSubscribedToGossipCoreTopics() - ); + const preCapella = chain.clock.currentEpoch < chain.config.CAPELLA_FORK_EPOCH; chain.opPool.insertBlsToExecutionChange(blsToExecutionChange, preCapella); if (!preCapella) { await network.gossip.publishBlsToExecutionChange(blsToExecutionChange);