From b958ca22a546ade6d3f1f4d7e1bd49af5743483c Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Thu, 31 Mar 2022 19:57:50 -0400 Subject: [PATCH] Remove workaround for problem now solved by #8229 Signed-off-by: Thane Thomson --- test/e2e/app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/app/app.go b/test/e2e/app/app.go index 6c185aaaf..d424199e3 100644 --- a/test/e2e/app/app.go +++ b/test/e2e/app/app.go @@ -331,7 +331,7 @@ func (app *Application) PrepareProposal(req abci.RequestPrepareProposal) abci.Re extCount++ } // We only generate our special transaction if we have vote extensions - if extCount > 0 && len(req.Txs) > 0 { + if extCount > 0 { extTxPrefix := fmt.Sprintf("%s=", voteExtensionKey) extTx := []byte(fmt.Sprintf("%s%d", extTxPrefix, sum)) app.logger.Info("preparing proposal with custom transaction from vote extensions", "tx", extTx)