From 5d6713920625b82df2b55728b2cbb9f7f3df2025 Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 3 Jul 2014 10:05:02 +0200 Subject: Fix --- ethchain/state_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ethchain/state_manager.go') diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go index c42238e5c..027c6a085 100644 --- a/ethchain/state_manager.go +++ b/ethchain/state_manager.go @@ -208,7 +208,7 @@ func (sm *StateManager) Process(block *Block, dontReact bool) (err error) { if ethutil.Config.Paranoia { valid, _ := ethtrie.ParanoiaCheck(state.trie) if !valid { - err = fmt.Errorf("PARANOIA: World state trie comparison failed") + err = fmt.Errorf("PARANOIA: World state trie corruption") } } -- cgit