Skip to content
Snippets Groups Projects
Unverified Commit 131d8fe6 authored by Sean Young's avatar Sean Young Committed by GitHub
Browse files

Merge pull request #914 from phymbert/MinorTypoFix

Minor typo fix in error message when account address is not found
parents 113e16ad c7038e86
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ func ValidateInputs(getter state.AccountGetter, ins []*TxInput) error {
return err
}
if acc == nil {
return fmt.Errorf("validateInputs() expects to be able to retrive accoutn %v but it was not found",
return fmt.Errorf("validateInputs() expects to be able to retrieve account %v but it was not found",
in.Address)
}
err = in.Validate(acc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment