From 51bac9ebccb39a9bd366dbdd17f5877eb87f89f1 Mon Sep 17 00:00:00 2001 From: Mikel Cortes Date: Tue, 21 May 2024 11:13:58 +0200 Subject: [PATCH] unsubscribe to the Voluntary Exit topic to address #24 --- eth/node_config.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eth/node_config.go b/eth/node_config.go index db6f844..6bd521b 100644 --- a/eth/node_config.go +++ b/eth/node_config.go @@ -377,7 +377,10 @@ func desiredPubSubBaseTopics() []string { p2p.GossipBlockMessage, p2p.GossipAggregateAndProofMessage, p2p.GossipAttestationMessage, - p2p.GossipExitMessage, + // In relation to https://github.com/probe-lab/hermes/issues/24 + // we unfortunatelly can't validate the messages (yet) + // thus, better not to forward invalid messages + //p2p.GossipExitMessage, p2p.GossipAttesterSlashingMessage, p2p.GossipProposerSlashingMessage, p2p.GossipContributionAndProofMessage,