mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 21:56:43 +00:00
Enhance error logging for blob transactions
This commit is contained in:
parent
ac2a6b2218
commit
14b6c739e8
1 changed files with 1 additions and 1 deletions
|
|
@ -1346,7 +1346,7 @@ func (p *BlobPool) GetBlobs(vhashes []common.Hash, version byte) ([]*kzg4844.Blo
|
||||||
}
|
}
|
||||||
sidecar := tx.BlobTxSidecar()
|
sidecar := tx.BlobTxSidecar()
|
||||||
if sidecar == nil {
|
if sidecar == nil {
|
||||||
log.Error("Blob tx without sidecar", "id", txID)
|
log.Error("Blob tx without sidecar", "hash", tx.Hash(), "id", txID)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// Traverse the blobs in the transaction
|
// Traverse the blobs in the transaction
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue