reorder tx test also removes txs

This commit is contained in:
William Banfield
2022-03-08 16:35:21 -05:00
parent d102b4881e
commit 6a085d6077

View File

@@ -788,6 +788,7 @@ func TestPrepareProposalReorderTxs(t *testing.T) {
mp.On("ReapMaxBytesMaxGas", mock.Anything, mock.Anything).Return(types.Txs(txs))
trs := types.TxsToTxRecords(types.Txs(txs))
trs = trs[2:]
trs = append(trs[len(trs)/2:], trs[:len(trs)/2]...)
app := abcimocks.NewBaseMock()