From 7ddc46bb2bb4cf497f5dbb796dc8316011e3fe16 Mon Sep 17 00:00:00 2001 From: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Date: Thu, 14 Dec 2023 13:59:29 +0100 Subject: [PATCH] chore: fix spelling errors (#18747) Co-authored-by: github-merge-queue --- x/auth/client/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/auth/client/tx.go b/x/auth/client/tx.go index 8cd6e118e0..dd306ee14d 100644 --- a/x/auth/client/tx.go +++ b/x/auth/client/tx.go @@ -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 {