This commit is contained in:
obscuren 2014-07-03 10:05:02 +02:00
parent 5b8dde9602
commit 5d67139206
2 changed files with 2 additions and 1 deletions

View File

@ -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")
}
}

View File

@ -53,6 +53,7 @@ func (self *StateTransition) Sender() *StateObject {
}
self.sen = self.state.GetAccount(self.tx.Sender())
return self.sen
}
func (self *StateTransition) Receiver() *StateObject {