From 6bead662cb2a82345aa85672c565b95c057529ad Mon Sep 17 00:00:00 2001 From: healthykim Date: Thu, 2 Jul 2026 17:15:03 +0200 Subject: [PATCH] eth: fix lint --- eth/dropper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/dropper.go b/eth/dropper.go index 8863e18e24..36c970e8d8 100644 --- a/eth/dropper.go +++ b/eth/dropper.go @@ -73,7 +73,7 @@ type protectionCategory struct { // independently selects its top-N peers per pool; the union is protected. var protectionCategories = []protectionCategory{ {func(s txtracker.PeerStats) float64 { return s.RecentFinalized }, inclusionProtectionFrac}, // Recent finalized - {func(s txtracker.PeerStats) float64 { return s.RecentIncluded }, inclusionProtectionFrac}, // Recent included + {func(s txtracker.PeerStats) float64 { return s.RecentIncluded }, inclusionProtectionFrac}, // Recent included } // dropper monitors the state of the peer pool and introduces churn by