From d1652bb9245151cc9554dba1f2907a0478c4c307 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 23 Feb 2022 11:19:36 -0500 Subject: [PATCH] comment process proposal in test app --- test/e2e/app/app.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/app/app.go b/test/e2e/app/app.go index 80c526bef..c015b9d4e 100644 --- a/test/e2e/app/app.go +++ b/test/e2e/app/app.go @@ -275,7 +275,8 @@ func (app *Application) PrepareProposal( return abci.ResponsePrepareProposal{BlockData: req.BlockData} } -// ProcessProposal implements ABCI +// ProcessProposal implements part of the Application interface. +// It accepts any proposal that does not contain a malformed transaction. func (app *Application) ProcessProposal(req abci.RequestProcessProposal) abci.ResponseProcessProposal { for _, tx := range req.Txs { _, _, err := parseTx(tx)