mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
comment
This commit is contained in:
parent
ea87309442
commit
b5c2db7368
1 changed files with 4 additions and 2 deletions
|
|
@ -105,7 +105,9 @@ var (
|
||||||
// blob gas fee of the block.
|
// blob gas fee of the block.
|
||||||
ErrBlobFeeCapTooLow = errors.New("max fee per blob gas less than block blob gas fee")
|
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")
|
ErrMissingBlobHashes = errors.New("blob transaction missing blob hashes")
|
||||||
|
|
||||||
|
// ErrBlobTxCreate is returned if a blob transaction has no explicit to field.
|
||||||
ErrBlobTxCreate = errors.New("blob transaction of type create")
|
ErrBlobTxCreate = errors.New("blob transaction of type create")
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue