Added a GetKeys method to support multiple accounts
This commit is contained in:
@ -4,6 +4,7 @@ package ethutil
|
||||
type Database interface {
|
||||
Put(key []byte, value []byte)
|
||||
Get(key []byte) ([]byte, error)
|
||||
GetKeys() []*Key
|
||||
Delete(key []byte) error
|
||||
LastKnownTD() []byte
|
||||
Close()
|
||||
|
Reference in New Issue
Block a user