From b4dcb33b19c1b070b19193bbb37e450f1de8a01e Mon Sep 17 00:00:00 2001 From: zjumathcode Date: Tue, 25 Nov 2025 14:42:12 +0800 Subject: [PATCH] chore: fix inaccurate package comment in blocktest/test_hash.go Signed-off-by: zjumathcode --- internal/blocktest/test_hash.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/blocktest/test_hash.go b/internal/blocktest/test_hash.go index b3e7098e2b..0c7894694c 100644 --- a/internal/blocktest/test_hash.go +++ b/internal/blocktest/test_hash.go @@ -14,11 +14,11 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see . -// Package utesting provides a standalone replacement for package testing. +// Package blocktest provides utilities for hashing transaction and receipt lists. // -// This package exists because package testing cannot easily be embedded into a -// standalone go program. It provides an API that mirrors the standard library -// testing API. +// This package implements a simple hasher for testing block processing. +// The hasher avoids import cycles by providing a lightweight alternative to +// the main trie hasher. package blocktest