only notify when there are some txs (Refs #753)

This commit is contained in:
Anton Kaliaev 2017-10-18 16:38:52 +04:00 committed by Ethan Buchman
parent b234f7aba2
commit f908dd0e55
1 changed files with 4 additions and 1 deletions

View File

@ -269,7 +269,10 @@ func (mem *Mempool) resCbRecheck(req *abci.Request, res *abci.Response) {
atomic.StoreInt32(&mem.rechecking, 0)
mem.logger.Info("Done rechecking txs")
mem.notifyTxsAvailable()
// incase the recheck removed all txs
if mem.Size() > 0 {
mem.notifyTxsAvailable()
}
}
default:
// ignore other messages