From e32513071903781b2adec646eecb07f92d962c7f Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 15 Apr 2025 14:16:22 +0200 Subject: [PATCH] eth/protocols/eth: add missing ListEnd call --- eth/protocols/eth/receipt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/protocols/eth/receipt.go b/eth/protocols/eth/receipt.go index 0b249ae0a7..9416850025 100644 --- a/eth/protocols/eth/receipt.go +++ b/eth/protocols/eth/receipt.go @@ -59,7 +59,7 @@ func (r *Receipt) DecodeRLP(s *rlp.Stream) error { GasUsed: gasUsed, Logs: logs, } - return nil + return s.ListEnd() } func (r *Receipt) EncodeRLP(_w io.Writer) error {