core, consensus: fix some typos in comment code and output log

This commit is contained in:
hadv
2018-05-19 15:39:41 +07:00
parent 784aa83942
commit f2fdb75dd9
2 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ func (self *StateDB) deleteStateObject(stateObject *stateObject) {
self.setError(self.trie.TryDelete(addr[:]))
}
// Retrieve a state object given my the address. Returns nil if not found.
// Retrieve a state object given by the address. Returns nil if not found.
func (self *StateDB) getStateObject(addr common.Address) (stateObject *stateObject) {
// Prefer 'live' objects.
if obj := self.stateObjects[addr]; obj != nil {