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 {