docs(x/auth/tx): fixed typo in error log in query.go (#20447)

Signed-off-by: Hwangjae Lee <meetrick@gmail.com>
This commit is contained in:
Hwangjae Lee 2024-05-25 00:45:38 +09:00 committed by GitHub
parent 76ae2a14bb
commit ad59942fc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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()