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)