(key []byte)
| 67 | // Txn implements this itself to allow for nested transactions |
| 68 | type TxnReaderI interface { |
| 69 | Get(key []byte) ([]byte, lib.ErrorI) |
| 70 | NewIterator(prefix []byte, reverse bool, seek bool) (lib.IteratorI, lib.ErrorI) |
| 71 | Close() lib.ErrorI |
| 72 | } |
no outgoing calls