Versions in this module Expand all Collapse all v1 v1.9.1 Jul 24, 2019 v1.9.0 Jul 10, 2019 Changes in this version + type Database struct — darwin/amd64, linux/amd64, windows/amd64 + func New(file string, cache int, handles int, namespace string) (*Database, error) + func (db *Database) Close() error + func (db *Database) Compact(start []byte, limit []byte) error + func (db *Database) Delete(key []byte) error + func (db *Database) Get(key []byte) ([]byte, error) + func (db *Database) Has(key []byte) (bool, error) + func (db *Database) NewBatch() ethdb.Batch + func (db *Database) NewIterator() ethdb.Iterator + func (db *Database) NewIteratorWithPrefix(prefix []byte) ethdb.Iterator + func (db *Database) NewIteratorWithStart(start []byte) ethdb.Iterator + func (db *Database) Path() string + func (db *Database) Put(key []byte, value []byte) error + func (db *Database) Stat(property string) (string, error)