mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-09 06:12:07 +00:00
13 lines
217 B
Go
13 lines
217 B
Go
package ethutil
|
|
|
|
// Database interface
|
|
type Database interface {
|
|
Put(key []byte, value []byte)
|
|
Get(key []byte) ([]byte, error)
|
|
//GetKeys() []*Key
|
|
Delete(key []byte) error
|
|
LastKnownTD() []byte
|
|
Close()
|
|
Print()
|
|
}
|