aboutsummaryrefslogtreecommitdiffstats
path: root/common/db.go
blob: 408b1e7558669396802ac043b27f3dd6552b2185 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package common

// Database interface
type Database interface {
    Put(key []byte, value []byte)
    Get(key []byte) ([]byte, error)
    Delete(key []byte) error
    LastKnownTD() []byte
    Close()
}