mirror of
https://github.com/fluencelabs/tendermint
synced 2025-07-15 20:41:37 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
acc161f7cc | ||
|
eebc7f9511 |
@@ -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
|
||||
|
@@ -2,11 +2,11 @@ package version
|
||||
|
||||
const Maj = "0"
|
||||
const Min = "10"
|
||||
const Fix = "4"
|
||||
const Fix = "5"
|
||||
|
||||
var (
|
||||
// The full version string
|
||||
Version = "0.10.4"
|
||||
Version = "0.10.5"
|
||||
|
||||
// GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)"
|
||||
GitCommit string
|
||||
|
Reference in New Issue
Block a user