diff --git a/consensus/replay_stubs.go b/consensus/replay_stubs.go index e77ef322d..ebc1d8592 100644 --- a/consensus/replay_stubs.go +++ b/consensus/replay_stubs.go @@ -87,6 +87,11 @@ func (mock *mockProxyApp) DeliverTx(req abci.RequestDeliverTx) abci.ResponseDeli return *r } +func (mock *mockProxyApp) BeginBlock(req abci.RequestBeginBlock) abci.ResponseBeginBlock { + mock.txCount = 0 + return *mock.abciResponses.BeginBlock +} + func (mock *mockProxyApp) EndBlock(req abci.RequestEndBlock) abci.ResponseEndBlock { mock.txCount = 0 return *mock.abciResponses.EndBlock