From ad59942fc8231ae7f4afe959530bf51e2f5e824a Mon Sep 17 00:00:00 2001 From: Hwangjae Lee Date: Sat, 25 May 2024 00:45:38 +0900 Subject: [PATCH] docs(x/auth/tx): fixed typo in error log in `query.go` (#20447) Signed-off-by: Hwangjae Lee --- x/auth/tx/query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/auth/tx/query.go b/x/auth/tx/query.go index da70c74dce..c49ddfa254 100644 --- a/x/auth/tx/query.go +++ b/x/auth/tx/query.go @@ -136,7 +136,7 @@ func mkTxResult(txConfig client.TxConfig, resTx *coretypes.ResultTx, resBlock *c } p, ok := txb.(*gogoTxWrapper) if !ok { - return nil, fmt.Errorf("unexpected type, wnted gogoTxWrapper, got: %T", txb) + return nil, fmt.Errorf("unexpected type, wanted gogoTxWrapper, got: %T", txb) } tx, err := p.AsTx()