diff --git a/core/error.go b/core/error.go index ff8c75ad48..72cacf8c78 100644 --- a/core/error.go +++ b/core/error.go @@ -105,7 +105,9 @@ var ( // blob gas fee of the block. ErrBlobFeeCapTooLow = errors.New("max fee per blob gas less than block blob gas fee") - // ErrMissingBlobHashes is returned if a blob transaction has 0 blob hashes. + // ErrMissingBlobHashes is returned if a blob transaction has no blob hashes. ErrMissingBlobHashes = errors.New("blob transaction missing blob hashes") - ErrBlobTxCreate = errors.New("blob transaction of type create") + + // ErrBlobTxCreate is returned if a blob transaction has no explicit to field. + ErrBlobTxCreate = errors.New("blob transaction of type create") )