go-ethereum/common/db.go

12 lines
202 B
Go
Raw Normal View History

2015-03-16 12:27:38 +02:00
package common
2014-02-15 00:56:09 +02:00
// Database interface
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
2014-02-24 13:12:01 +02:00
Delete(key []byte) error
2014-02-15 00:56:09 +02:00
LastKnownTD() []byte
Close()
Flush() error
2014-02-15 00:56:09 +02:00
}