From b5c2db7368b3c8617fc3d103bbedd6cedd400e73 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Wed, 10 Jan 2024 19:28:45 +0330 Subject: [PATCH] comment --- core/error.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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") )