From 5852743a162c658e33c7e95cad91b8ce7a063eb1 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Thu, 18 Aug 2022 13:42:45 -0400 Subject: [PATCH] make linter happy --- state/execution_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/execution_test.go b/state/execution_test.go index f4dd4fb9d..c866a5372 100644 --- a/state/execution_test.go +++ b/state/execution_test.go @@ -701,7 +701,7 @@ func TestPrepareProposalReorderTxs(t *testing.T) { block, err := blockExec.CreateProposalBlock(height, state, commit, pa, nil) require.NoError(t, err) for i, tx := range block.Data.Txs { - require.Equal(t, types.Tx(txs[i]), tx) + require.Equal(t, txs[i], tx) } mp.AssertExpectations(t)