Skip to content

Commit

Permalink
Fix copy-paste error from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
assafmo committed Aug 15, 2022
1 parent 62e39f0 commit 789a853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/auth/signing/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func VerifySignature(pubKey cryptotypes.PubKey, signerData SignerData, sigData s
}
} else {
if !pubKey.VerifySignature(signBytes, data.Signature) {
return fmt.Errorf("unable to verify single signer eip191 signature %s for signBytes %s", hex.EncodeToString(data.Signature), hex.EncodeToString(signBytes))
return fmt.Errorf("unable to verify single signer signature %s for signBytes %s", hex.EncodeToString(data.Signature), hex.EncodeToString(signBytes))
}
}
return nil
Expand Down

0 comments on commit 789a853

Please sign in to comment.