chore: linting (#15813)

This commit is contained in:
Marko
2023-04-12 12:36:42 +00:00
committed by GitHub
parent 00e1f85eca
commit 37032fb948
35 changed files with 150 additions and 138 deletions
+2
View File
@@ -104,6 +104,7 @@ func TestDecode(t *testing.T) {
require.True(t, ok)
err = txBuilder.SetMsgs(gogoMsg)
require.NoError(t, err)
txBuilder.SetFeeAmount(fee)
txBuilder.SetGasLimit(gas)
txBuilder.SetMemo(memo)
@@ -112,6 +113,7 @@ func TestDecode(t *testing.T) {
tx := txBuilder.GetTx()
txBytes, err := encCfg.TxConfig.TxEncoder()(tx)
require.NoError(t, err)
decodeCtx, err := decode.NewDecoder(decode.Options{})
require.NoError(t, err)
decodedTx, err := decodeCtx.Decode(txBytes)