Skip to content

Commit 41ee96f

Browse files
authored
core/txpool/blobpool: fix rlp decoding flaw during offload (#28027)
1 parent b8adb4c commit 41ee96f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/txpool/blobpool/blobpool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ func (p *BlobPool) offload(addr common.Address, nonce uint64, id uint64, inclusi
714714
return
715715
}
716716
var tx types.Transaction
717-
if err = rlp.DecodeBytes(data, tx); err != nil {
717+
if err = rlp.DecodeBytes(data, &tx); err != nil {
718718
log.Error("Blobs corrupted for included transaction", "from", addr, "nonce", nonce, "id", id, "err", err)
719719
return
720720
}

0 commit comments

Comments
 (0)