mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
cmd/devp2p: swap want and got (#35125)
This commit is contained in:
parent
0ee70187fd
commit
31d227ea83
1 changed files with 1 additions and 1 deletions
|
|
@ -535,7 +535,7 @@ func (s *Suite) TestGetLargeReceipts(t *utesting.T) {
|
||||||
t.Fatalf("error reading block receipts msg: %v", err)
|
t.Fatalf("error reading block receipts msg: %v", err)
|
||||||
}
|
}
|
||||||
if got, want := resp.RequestId, req.RequestId; got != want {
|
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()
|
receiptLists, _ := resp.List.Items()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue