Browse Source

reorder tx test also removes txs

wb/txrset
William Banfield 3 years ago
parent
commit
6a085d6077
No known key found for this signature in database GPG Key ID: EFAD3442BF29E3AC
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      internal/state/execution_test.go

+ 1
- 0
internal/state/execution_test.go 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()


Loading…
Cancel
Save