mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 17:33:47 +00:00
Update iterator_test.go
This commit is contained in:
parent
1bfb8f0a66
commit
9e13c0c225
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue