mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Revert "core/txpool/blobpool: fix rlp decoding flaw during offload (#28027)"
This reverts commit ca0d2cfce0.
This commit is contained in:
parent
4edb5b4b1a
commit
0524514eb0
1 changed files with 1 additions and 1 deletions
|
|
@ -714,7 +714,7 @@ func (p *BlobPool) offload(addr common.Address, nonce uint64, id uint64, inclusi
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
var tx types.Transaction
|
var tx types.Transaction
|
||||||
if err = rlp.DecodeBytes(data, &tx); err != nil {
|
if err = rlp.DecodeBytes(data, tx); err != nil {
|
||||||
log.Error("Blobs corrupted for included transaction", "from", addr, "nonce", nonce, "id", id, "err", err)
|
log.Error("Blobs corrupted for included transaction", "from", addr, "nonce", nonce, "id", id, "err", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue