f6d1bfe45
c0fcefa3a
55c1c220d
1 2 3 4 5 6
7
8
9 10 11 12
package ethutil // Database interface type Database interface { Put(key []byte, value []byte) Get(key []byte) ([]byte, error) GetKeys() []*Key Delete(key []byte) error LastKnownTD() []byte Close() Print() }