mirror of
https://github.com/fluencelabs/tendermint
synced 2025-07-16 12:51:59 +00:00
Compare commits
2 Commits
multisig_d
...
v0.10.5
Author | SHA1 | Date | |
---|---|---|---|
|
acc161f7cc | ||
|
eebc7f9511 |
@@ -269,7 +269,10 @@ func (mem *Mempool) resCbRecheck(req *abci.Request, res *abci.Response) {
|
|||||||
atomic.StoreInt32(&mem.rechecking, 0)
|
atomic.StoreInt32(&mem.rechecking, 0)
|
||||||
mem.logger.Info("Done rechecking txs")
|
mem.logger.Info("Done rechecking txs")
|
||||||
|
|
||||||
mem.notifyTxsAvailable()
|
// incase the recheck removed all txs
|
||||||
|
if mem.Size() > 0 {
|
||||||
|
mem.notifyTxsAvailable()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
// ignore other messages
|
// ignore other messages
|
||||||
|
@@ -2,11 +2,11 @@ package version
|
|||||||
|
|
||||||
const Maj = "0"
|
const Maj = "0"
|
||||||
const Min = "10"
|
const Min = "10"
|
||||||
const Fix = "4"
|
const Fix = "5"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// The full version string
|
// 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 is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)"
|
||||||
GitCommit string
|
GitCommit string
|
||||||
|
Reference in New Issue
Block a user