From 7c54339a1c347b10e2caded7ebaf5e3a7a84f744 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Tue, 7 Jun 2022 12:32:00 +1000 Subject: [PATCH] feat(execution): Disable TXPool module by default --- pkg/exporter/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/exporter/config.go b/pkg/exporter/config.go index fc4b345..2861060 100644 --- a/pkg/exporter/config.go +++ b/pkg/exporter/config.go @@ -38,7 +38,7 @@ func DefaultConfig() *Config { Enabled: true, Name: "execution", URL: "http://localhost:8545", - Modules: []string{"eth", "net", "web3", "txpool"}, + Modules: []string{"eth", "net", "web3"}, }, Consensus: ConsensusNode{ Enabled: true,