Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #914 from phymbert/MinorTypoFix
Browse files Browse the repository at this point in the history
Minor typo fix in error message when account address is not found
  • Loading branch information
Sean Young committed Sep 17, 2018
2 parents 113e16a + c7038e8 commit 131d8fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txs/payload/tx_input.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 131d8fe

Please sign in to comment.