go-ethereum/common/db.go

13 lines
216 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)
Get(key []byte) ([]byte, error)
//GetKeys() []*Key
2014-02-24 05:12:01 -06:00
Delete(key []byte) error
2014-02-14 16:56:09 -06:00
LastKnownTD() []byte
Close()
Print()
}