diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-01-05 19:26:38 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-01-05 19:26:38 +0800 |
commit | 32226f1b0cb98286cfd3f2898c344df1dfca45ec (patch) | |
tree | 4eeb1c35b75915fa3686d0e9ae3fd75796fdf4a0 /core/state | |
parent | a7fc4fa9b7c72059d7f58d705488c9de35413907 (diff) | |
parent | 9e011ff1cd7fe060e106608d0823e48431ef12e9 (diff) | |
download | dexon-32226f1b0cb98286cfd3f2898c344df1dfca45ec.tar dexon-32226f1b0cb98286cfd3f2898c344df1dfca45ec.tar.gz dexon-32226f1b0cb98286cfd3f2898c344df1dfca45ec.tar.bz2 dexon-32226f1b0cb98286cfd3f2898c344df1dfca45ec.tar.lz dexon-32226f1b0cb98286cfd3f2898c344df1dfca45ec.tar.xz dexon-32226f1b0cb98286cfd3f2898c344df1dfca45ec.tar.zst dexon-32226f1b0cb98286cfd3f2898c344df1dfca45ec.zip |
Merge pull request #2097 from karalabe/block-state-checks
core, eth/downloader: ensure state presence in ancestor lookup
Diffstat (limited to 'core/state')
-rw-r--r-- | core/state/statedb.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/state/statedb.go b/core/state/statedb.go index ab93870bf..413321057 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -57,7 +57,6 @@ type StateDB struct { func New(root common.Hash, db ethdb.Database) (*StateDB, error) { tr, err := trie.NewSecure(root, db) if err != nil { - glog.Errorf("can't create state trie with root %x: %v", root[:], err) return nil, err } return &StateDB{ |