mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
eth/protocols/eth: fix crash for eth/68
This commit is contained in:
parent
268f33ac95
commit
b89eb04fff
1 changed files with 1 additions and 1 deletions
|
|
@ -407,7 +407,7 @@ func handleReceipts68(backend Backend, msg Decoder, peer *Peer) error {
|
|||
}
|
||||
return hashes
|
||||
}
|
||||
encoded := types.ReceiptsToRLP(res.ReceiptsResponse)
|
||||
encoded := ReceiptsRLPResponse(types.ReceiptsToRLP(res.ReceiptsResponse))
|
||||
return peer.dispatchResponse(&Response{
|
||||
id: res.RequestId,
|
||||
code: ReceiptsMsg,
|
||||
|
|
|
|||
Loading…
Reference in a new issue