mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +00:00
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:
parent
06b23b4293
commit
e50187a9d8
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue