mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-09 05:20:10 +00:00
Remove workaround for problem now solved by #8229
Signed-off-by: Thane Thomson <connect@thanethomson.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user