Update iterator_test.go

This commit is contained in:
crStiv 2025-02-07 17:22:10 +01:00 committed by GitHub
parent 1bfb8f0a66
commit 9e13c0c225
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {