chore: fix inaccurate package comment in blocktest/test_hash.go

Signed-off-by: zjumathcode <pai314159@2980.com>
This commit is contained in:
zjumathcode 2025-11-25 14:42:12 +08:00
parent 2a4847a7d1
commit b4dcb33b19

View file

@ -14,11 +14,11 @@
// You should have received a copy of the GNU Lesser General Public License // You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
// 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 // This package implements a simple hasher for testing block processing.
// standalone go program. It provides an API that mirrors the standard library // The hasher avoids import cycles by providing a lightweight alternative to
// testing API. // the main trie hasher.
package blocktest package blocktest