mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-03 10:03:47 +00:00
Conform to Db interface
This commit is contained in:
parent
8fa19664e6
commit
3f7ec1a83f
1 changed files with 1 additions and 0 deletions
|
|
@ -25,6 +25,7 @@ func (db *MemDatabase) Delete(key []byte) error {
|
|||
delete(db.db, string(key))
|
||||
return nil
|
||||
}
|
||||
func (db *MemDatabase) GetKeys() []*Key { return nil }
|
||||
func (db *MemDatabase) Print() {}
|
||||
func (db *MemDatabase) Close() {}
|
||||
func (db *MemDatabase) LastKnownTD() []byte { return nil }
|
||||
|
|
|
|||
Loading…
Reference in a new issue