eth/protocols/eth: add missing ListEnd call

This commit is contained in:
Felix Lange 2025-04-15 14:16:22 +02:00
parent 0cffccf6c0
commit e325130719

View file

@ -59,7 +59,7 @@ func (r *Receipt) DecodeRLP(s *rlp.Stream) error {
GasUsed: gasUsed, GasUsed: gasUsed,
Logs: logs, Logs: logs,
} }
return nil return s.ListEnd()
} }
func (r *Receipt) EncodeRLP(_w io.Writer) error { func (r *Receipt) EncodeRLP(_w io.Writer) error {