The great merge

This commit is contained in:
obscuren
2014-02-14 23:56:09 +01:00
parent c2fb9f06ad
commit f6d1bfe45b
43 changed files with 4547 additions and 12 deletions

10
ethutil/db.go Normal file
View File

@ -0,0 +1,10 @@
package ethutil
// Database interface
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
LastKnownTD() []byte
Close()
Print()
}