2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-01-25 05:59:11 +00:00

11 lines
187 B
Go

package common
// Database interface
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
Delete(key []byte) error
LastKnownTD() []byte
Close()
}