From ce9b5982bc408ebfe3915859183349b816fed449 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Fri, 11 Mar 2022 17:39:15 -0500 Subject: [PATCH] fix all cases of CreateProposalBlock votes --- internal/state/execution_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal/state/execution_test.go b/internal/state/execution_test.go index bd85758f0..5c18aa3f9 100644 --- a/internal/state/execution_test.go +++ b/internal/state/execution_test.go @@ -646,7 +646,7 @@ func TestEmptyPrepareProposal(t *testing.T) { ) pa, _ := state.Validators.GetByIndex(0) commit := makeValidCommit(ctx, t, height, types.BlockID{}, state.Validators, privVals) - _, err = blockExec.CreateProposalBlock(ctx, height, state, commit, pa) + _, err = blockExec.CreateProposalBlock(ctx, height, state, commit, pa, nil) require.NoError(t, err) } @@ -699,7 +699,7 @@ func TestPrepareProposalRemoveTxs(t *testing.T) { ) pa, _ := state.Validators.GetByIndex(0) commit := makeValidCommit(ctx, t, height, types.BlockID{}, state.Validators, privVals) - block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa) + block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa, nil) require.NoError(t, err) require.Len(t, block.Data.Txs.ToSliceOfBytes(), len(trs)-2) @@ -760,7 +760,7 @@ func TestPrepareProposalAddedTxsIncluded(t *testing.T) { ) pa, _ := state.Validators.GetByIndex(0) commit := makeValidCommit(ctx, t, height, types.BlockID{}, state.Validators, privVals) - block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa) + block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa, nil) require.NoError(t, err) require.Equal(t, txs[0], block.Data.Txs[0]) @@ -818,7 +818,7 @@ func TestPrepareProposalReorderTxs(t *testing.T) { ) pa, _ := state.Validators.GetByIndex(0) commit := makeValidCommit(ctx, t, height, types.BlockID{}, state.Validators, privVals) - block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa) + block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa, nil) require.NoError(t, err) for i, tx := range block.Data.Txs { require.Equal(t, types.Tx(trs[i].Tx), tx) @@ -881,7 +881,7 @@ func TestPrepareProposalModifiedTxFalse(t *testing.T) { ) pa, _ := state.Validators.GetByIndex(0) commit := makeValidCommit(ctx, t, height, types.BlockID{}, state.Validators, privVals) - block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa) + block, err := blockExec.CreateProposalBlock(ctx, height, state, commit, pa, nil) require.NoError(t, err) for i, tx := range block.Data.Txs { require.Equal(t, txs[i], tx)