aboutsummaryrefslogtreecommitdiffstats
path: root/state/state.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-12 08:36:36 +0800
committerobscuren <geffobscura@gmail.com>2014-11-12 08:36:36 +0800
commit60cdb1148c404218846fd39331690658168f4e04 (patch)
tree229e68d7dfdaccb12e0b6b9ff19c5c14b9f9c603 /state/state.go
parent9bb1ac7564ff0588f33a1eb43e76f40664d9e527 (diff)
downloaddexon-60cdb1148c404218846fd39331690658168f4e04.tar.gz
dexon-60cdb1148c404218846fd39331690658168f4e04.tar.zst
dexon-60cdb1148c404218846fd39331690658168f4e04.zip
Transaction execution fixes
Diffstat (limited to 'state/state.go')
-rw-r--r--state/state.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/state/state.go b/state/state.go
index e3012f019..3abf1545b 100644
--- a/state/state.go
+++ b/state/state.go
@@ -302,7 +302,7 @@ func (self *State) Update() {
if deleted {
valid, t2 := trie.ParanoiaCheck(self.Trie)
if !valid {
- statelogger.Infof("Warn: PARANOIA: Different state root during copy %x vs %x\n", self.Trie.Root, t2.Root)
+ statelogger.Infof("Warn: PARANOIA: Different state root during copy %x vs %x\n", self.Trie.GetRoot(), t2.GetRoot())
self.Trie = t2
}