Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions node/derivation/derivation.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,8 @@ func (d *Derivation) fetchRollupDataByTxHash(txHash common.Hash, blockNumber uin
d.logger.Info("Blob matching results", "matched", matchedCount, "expected", len(blobHashes))
if matchedCount > 0 {
batch.Sidecar = blobTxSidecar
} else {
return nil, fmt.Errorf("no matching versionedHash was found")
}
} else {
return nil, fmt.Errorf("not matched blob,txHash:%v,blockNumber:%v", txHash, blockNumber)
Expand Down