From 4ac0d5184ffd71c7c1df30ad6311d4d700bb0f05 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Tue, 9 Jun 2026 17:05:27 +0200 Subject: [PATCH] eth: fix borked test introduced in merging #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 a0515a753fff..a3bb11d0bf18 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)) }