| 8 | "github.com/syndtr/goleveldb/leveldb/iterator" |
| 9 | ) |
| 10 | |
| 11 | type Iterator struct { |
| 12 | it iterator.Iterator |
| 13 | db *DB // Reference to the main DB to access encryption key |
| 14 | ipfsDB *levelkv.LevelKV |
| 15 | ctx context.Context |
| 16 | } |
| 17 | |
| 18 | func (it *Iterator) Key() []byte { |
nothing calls this directly
no outgoing calls
no test coverage detected