From 0de4aa176530664ce3e9dce5682b2c57f99ae1a8 Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Wed, 3 Nov 2021 08:36:02 -0700 Subject: [PATCH] Fix spurious crasher in mempool fuzz test. (#7190) We were creating a TestLogger without testing being initialized. Switch to a no-op logger instead. --- test/fuzz/mempool/checktx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fuzz/mempool/checktx.go b/test/fuzz/mempool/checktx.go index 708f2ebd0..c0f207546 100644 --- a/test/fuzz/mempool/checktx.go +++ b/test/fuzz/mempool/checktx.go @@ -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,