From 43b7b4e8d9f9c8bf74d27bc6b13cb6c90a6128f8 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Tue, 9 Jun 2026 18:13:24 +0200 Subject: [PATCH] eth: fix borked test introduced in merging #33347 (#35130) Fixes a lint issue introduced via #33347. --- eth/api_debug_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/api_debug_test.go b/eth/api_debug_test.go index a0515a753f..a3bb11d0bf 100644 --- a/eth/api_debug_test.go +++ b/eth/api_debug_test.go @@ -399,7 +399,7 @@ func TestDebugAPI_ClearTxpool(t *testing.T) { // Verify the pool is empty after clear pool.Sync() - pending := pool.Pending(txpool.PendingFilter{}) + pending, _ := pool.Pending(txpool.PendingFilter{}) if len(pending) > 0 { t.Errorf("Expected empty pool after clear, but found %d accounts with pending transactions", len(pending)) }