From b1942323f5e6377014f7bb02f46879855307069b Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:02:11 +0100 Subject: [PATCH] feat: add DELAYED tx action --- internal/consensus/block_executor_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/consensus/block_executor_test.go b/internal/consensus/block_executor_test.go index 842d0495cf..86d5a98c9f 100644 --- a/internal/consensus/block_executor_test.go +++ b/internal/consensus/block_executor_test.go @@ -118,7 +118,7 @@ func (suite *BockExecutorTestSuite) TestCreate() { suite.mockBlockExec. On( "CreateProposalBlock", - mock.AnythingOfType("*context.emptyCtx"), + mock.Anything, tc.height, tc.round, stateData.state, @@ -224,7 +224,7 @@ func (suite *BockExecutorTestSuite) TestProcess() { suite.mockBlockExec. On( "ProcessProposal", - mock.AnythingOfType("*context.emptyCtx"), + mock.Anything, stateData.ProposalBlock, round, stateData.state,