From 32bdca36008d8e551eaa04c05dfdc6df9558477a Mon Sep 17 00:00:00 2001 From: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Date: Fri, 14 Jun 2024 15:05:00 +0200 Subject: [PATCH] chore: fix spelling errors (#20674) Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> --- client/rpc/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/rpc/tx.go b/client/rpc/tx.go index 9bdce23bfb..f5de0dfb1d 100644 --- a/client/rpc/tx.go +++ b/client/rpc/tx.go @@ -204,7 +204,7 @@ func parseHashFromInput(in []byte) ([]byte, error) { // That outputs a sdk.TxResponse as either the json or yaml. As json, we can't unmarshal it back into that struct, // though, because the height field ends up quoted which confuses json.Unmarshal (because it's for an int64 field). - // Try to find the txhash from json ouptut. + // Try to find the txhash from json output. resultTx := make(map[string]json.RawMessage) if err := json.Unmarshal(in, &resultTx); err == nil && len(resultTx["txhash"]) > 0 { // input was JSON, return the hash