Skip to content

Commit

Permalink
mod error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
blockchaindevsh committed Dec 27, 2024
1 parent 8098298 commit fea317d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ func (miner *Miner) commitBlobTransaction(env *environment, tx *types.Transactio
var nblobs int
if sc == nil {
if env.isEffectivelySequencing() /* we want to allow blob tx without blobs when it's deriving */ {
panic("blob transaction without blobs in miner")
panic("blob transaction without blobs in sequencing")
} else { // deriving, which does not have the sidecar
nblobs = len(tx.BlobHashes())
}
Expand Down

0 comments on commit fea317d

Please sign in to comment.