chore: fix spelling errors (#18747)

Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
This commit is contained in:
Cosmos SDK 2023-12-14 13:59:29 +01:00 committed by GitHub
parent bea3f9b7a3
commit 7ddc46bb2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ func ReadTxsFromFile(ctx client.Context, filename string) (tx []sdk.Tx, err erro
// In SignBatchCmd, the output prints each tx line by line separated by "\n".
// So we split the output bytes to slice of tx bytes,
// last elemet always be empty bytes.
// last element always be empty bytes.
txsBytes := bytes.Split(fileBuff, []byte("\n"))
txDecoder := ctx.TxConfig.TxJSONDecoder()
for _, txBytes := range txsBytes {