From b0f02a94b5d3710594c59d6037896b97d2965138 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 22 Feb 2022 09:18:41 -0500 Subject: [PATCH] add call to Counter application --- internal/consensus/mempool_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/consensus/mempool_test.go b/internal/consensus/mempool_test.go index 0cbee4fcd..88cf86238 100644 --- a/internal/consensus/mempool_test.go +++ b/internal/consensus/mempool_test.go @@ -306,3 +306,8 @@ func (app *CounterApplication) PrepareProposal( req abci.RequestPrepareProposal) abci.ResponsePrepareProposal { return abci.ResponsePrepareProposal{BlockData: req.BlockData} } + +func (app *CounterApplication) ProcessProposal( + req abci.RequestProcessProposal) abci.ResponseProcessProposal { + return abci.ResponseProcessProposal{Accept: true} +}