Commit 0a3e2d0c authored by George Hotz's avatar George Hotz

more standard statedb

parent 536d424b
...@@ -120,6 +120,13 @@ func (p *triePrefetcher) prefetch(root common.Hash, keys [][]byte) { ...@@ -120,6 +120,13 @@ func (p *triePrefetcher) prefetch(root common.Hash, keys [][]byte) {
func (p *triePrefetcher) used(root common.Hash, used [][]byte) { func (p *triePrefetcher) used(root common.Hash, used [][]byte) {
} }
func (p *triePrefetcher) close() {
}
func (p *triePrefetcher) copy() *triePrefetcher {
return p
}
func (p *triePrefetcher) trie(root common.Hash) Trie { func (p *triePrefetcher) trie(root common.Hash) Trie {
return nil return nil
} }
This diff is collapsed.
...@@ -19,3 +19,7 @@ func Warn(msg string, ctx ...interface{}) { ...@@ -19,3 +19,7 @@ func Warn(msg string, ctx ...interface{}) {
func Error(msg string, ctx ...interface{}) { func Error(msg string, ctx ...interface{}) {
fmt.Println(msg, ctx) fmt.Println(msg, ctx)
} }
func Crit(msg string, ctx ...interface{}) {
fmt.Println(msg, ctx)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment