op-geth/common/db.go

13 lines
216 B
Go
Raw Normal View History

2015-03-16 11:27:38 +01:00
package common
2014-02-14 23:56:09 +01:00
// Database interface
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
//GetKeys() []*Key
2014-02-24 12:12:01 +01:00
Delete(key []byte) error
2014-02-14 23:56:09 +01:00
LastKnownTD() []byte
Close()
Print()
}