diff options
Diffstat (limited to 'core/state/state_object.go')
-rw-r--r-- | core/state/state_object.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/state_object.go b/core/state/state_object.go index 326708118..769c63d42 100644 --- a/core/state/state_object.go +++ b/core/state/state_object.go @@ -287,7 +287,7 @@ func DecodeObject(address common.Address, db trie.Database, data []byte) (*State } if !bytes.Equal(ext.CodeHash, emptyCodeHash) { if obj.code, err = db.Get(ext.CodeHash); err != nil { - return nil, fmt.Errorf("can't find code for hash %x: %v", ext.CodeHash, err) + return nil, fmt.Errorf("can't get code for hash %x: %v", ext.CodeHash, err) } } obj.nonce = ext.Nonce |