Skip to content

Commit

Permalink
debug panic bsc
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgao001 committed Jul 29, 2024
1 parent ea770d2 commit 314f04a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions eth/downloader/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -783,21 +783,26 @@ func (q *queue) DeliverBodies(id string, txLists [][]*types.Transaction, txListH

validate := func(index int, header *types.Header) error {
if txListHashes[index] != header.TxHash {
log.Error("Tx hash mismatch", "index", index, "header", header.Hash(), "want", txListHashes[index])
return errInvalidBody
}
if uncleListHashes[index] != header.UncleHash {
log.Error("Uncle hash mismatch", "index", index, "header", header.Hash(), "want", uncleListHashes[index])
return errInvalidBody
}
if header.WithdrawalsHash == nil {
// nil hash means that withdrawals should not be present in body
if withdrawalLists[index] != nil {
log.Error("Withdrawals hash mismatch 1", "index", index, "header", header.Hash(), "want", header.WithdrawalsHash)
return errInvalidBody
}
} else { // non-nil hash: body must have withdrawals
if withdrawalLists[index] == nil {
log.Error("Withdrawals hash mismatch 2", "index", index, "header", header.Hash(), "want", header.WithdrawalsHash)
return errInvalidBody
}
if withdrawalListHashes[index] != *header.WithdrawalsHash {
log.Error("Withdrawals hash mismatch 3", "index", index, "header", header.Hash(), "want", withdrawalListHashes[index])
return errInvalidBody
}
}
Expand All @@ -811,27 +816,33 @@ func (q *queue) DeliverBodies(id string, txLists [][]*types.Transaction, txListH
// Validate the data blobs individually too
if tx.Type() == types.BlobTxType {
if len(tx.BlobHashes()) == 0 {
log.Error("BlobTx with no blobs", "index", index, "header", header.Hash())
return errInvalidBody
}
for _, hash := range tx.BlobHashes() {
if !kzg4844.IsValidVersionedHash(hash[:]) {
log.Error("Invalid blob hash", "index", index, "header", header.Hash(), "hash", hash)
return errInvalidBody
}
}
if tx.BlobTxSidecar() != nil {
log.Error("BlobTx with sidecar", "index", index, "header", header.Hash())
return errInvalidBody
}
}
}
if header.BlobGasUsed != nil {
if want := *header.BlobGasUsed / params.BlobTxBlobGasPerBlob; uint64(blobs) != want { // div because the header is surely good vs the body might be bloated
log.Error("Blob gas used mismatch", "index", index, "header", header.Hash(), "want", want, "have", blobs)
return errInvalidBody
}
if blobs > params.MaxBlobGasPerBlock/params.BlobTxBlobGasPerBlob {
log.Error("Too many blobs", "index", index, "header", header.Hash(), "have", blobs)
return errInvalidBody
}
} else {
if blobs != 0 {
log.Error("Blob gas used mismatch 2", "index", index, "header", header.Hash(), "want", 0, "have", blobs)
return errInvalidBody
}
}
Expand Down

0 comments on commit 314f04a

Please sign in to comment.