cmd/devp2p: fix leftover request id error message

Align the eth/70 large-receipts test failure message with the wording
and argument order used by the other GetReceipts checks from #35138.
This commit is contained in:
0xoasis 2026-07-18 00:12:51 +08:00
parent 06b23b4293
commit e50187a9d8

View file

@ -545,7 +545,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", want, got)
t.Fatalf("unexpected request id in response: got %d, want %d", got, want)
}
receiptLists, _ := resp.List.Items()