From a0ec406b6fccf2c2c6995f92cd9f93c39fdddd13 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Wed, 17 Jan 2024 13:19:24 +0330 Subject: [PATCH] fix lint issue --- core/state_transition.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state_transition.go b/core/state_transition.go index 56f170e777..6ae1224e29 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -315,7 +315,7 @@ func (st *StateTransition) preCheck() error { // Check the blob version validity if msg.BlobHashes != nil { // The to field of a blob tx type is mandatory, and a `BlobTx` transaction internally - // has it as a non-nillable value, so any msg derived from blob transaction has it non-nil. + // has it as a non-nillable value, so any msg derived from blob transaction has it non-nil. // However, messages created through RPC (eth_call) don't have this restriction. if msg.To == nil { return ErrBlobTxCreate