From 9e13c0c225d571c0732d94ff9e0e55bc0b54b6f1 Mon Sep 17 00:00:00 2001 From: crStiv Date: Fri, 7 Feb 2025 17:22:10 +0100 Subject: [PATCH] Update iterator_test.go --- triedb/pathdb/iterator_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/triedb/pathdb/iterator_test.go b/triedb/pathdb/iterator_test.go index 05a166d1b6..709b3ad261 100644 --- a/triedb/pathdb/iterator_test.go +++ b/triedb/pathdb/iterator_test.go @@ -198,8 +198,8 @@ func newTestIterator(values ...byte) *testIterator { return &testIterator{values} } -func (ti *testIterator) Seek(common.Hash) { - panic("implement me") +func (ti *testIterator) Seek(hash common.Hash) { + // No-op: Seek operation is not supported in this test iterator } func (ti *testIterator) Next() bool {