go-ethereum/common/db.go

11 lines
186 B
Go
Raw Normal View History

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