Small fixes in docs and error messages (#7826)

* Small fixes in docs and error messages

* Add chain id

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
This commit is contained in:
Amaury Martiny
2020-11-06 01:25:38 +00:00
committed by GitHub
co-authored by Federico Kunze
parent 03a46181c6
commit 4309859bf1
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ func (t *Tx) ValidateBasic() error {
if len(sigs) != len(t.GetSigners()) {
return sdkerrors.Wrapf(
sdkerrors.ErrUnauthorized,
"wrong number of signers; expected %d, got %d", t.GetSigners(), len(sigs),
"wrong number of signers; expected %d, got %d", len(t.GetSigners()), len(sigs),
)
}