Merge PR #6276: Fix error msg

This commit is contained in:
dauTT 2020-05-23 21:29:51 +02:00 committed by GitHub
parent 6973c56457
commit 97fecb1aa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ func (tx StdTx) ValidateBasic() error {
if len(stdSigs) != len(tx.GetSigners()) {
return sdkerrors.Wrapf(
sdkerrors.ErrUnauthorized,
"wrong number of signers; expected %d, got %d", tx.GetSigners(), len(stdSigs),
"wrong number of signers; expected %d, got %d", len(tx.GetSigners()), len(stdSigs),
)
}