From 31d227ea8333d0ae850acbe5419cf4605cbcc092 Mon Sep 17 00:00:00 2001 From: cui Date: Tue, 9 Jun 2026 01:06:16 +0800 Subject: [PATCH] cmd/devp2p: swap want and got (#35125) --- cmd/devp2p/internal/ethtest/suite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/devp2p/internal/ethtest/suite.go b/cmd/devp2p/internal/ethtest/suite.go index d710f98428..4bcfd06d7f 100644 --- a/cmd/devp2p/internal/ethtest/suite.go +++ b/cmd/devp2p/internal/ethtest/suite.go @@ -535,7 +535,7 @@ func (s *Suite) TestGetLargeReceipts(t *utesting.T) { t.Fatalf("error reading block receipts msg: %v", err) } if got, want := resp.RequestId, req.RequestId; got != want { - t.Fatalf("unexpected request id in respond, want: %d, got: %d", got, want) + t.Fatalf("unexpected request id in respond, want: %d, got: %d", want, got) } receiptLists, _ := resp.List.Items()