go-ethereum/common/db.go

12 lines
202 B
Go
Raw Permalink 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)
2014-02-24 12:12:01 +01:00
Delete(key []byte) error
2014-02-14 23:56:09 +01:00
LastKnownTD() []byte
Close()
Flush() error
2014-02-14 23:56:09 +01:00
}