mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 05:25:35 +00:00
Fix spurious crasher in mempool fuzz test. (#7190)
We were creating a TestLogger without testing being initialized. Switch to a no-op logger instead.
This commit is contained in:
@@ -28,7 +28,7 @@ func init() {
|
||||
getMp = func() mempool.Mempool {
|
||||
if mp == nil {
|
||||
mp = mempool.NewTxMempool(
|
||||
log.TestingLogger().With("module", "mempool"),
|
||||
log.NewNopLogger(),
|
||||
cfg,
|
||||
appConnMem,
|
||||
0,
|
||||
|
||||
Reference in New Issue
Block a user