diff options
author | fanquake <fanquake@gmail.com> | 2022-09-30 17:55:10 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-10-04 21:12:50 +0100 |
commit | eb155692804b4278f6638c74273c1d9d35cd6ab7 (patch) | |
tree | e18e690e8004ef999269ce350b44accf73d520c5 /src/test/fuzz/tx_pool.cpp | |
parent | d919e8d5742a98d7f2b957b142003166ba178d9e (diff) |
fuzz: add util/mempool/h.cpp
Moving the mempool code (Boost) out of util.h, results in a ~10% speedup
(for me) when compiling the fuzz tests.
Diffstat (limited to 'src/test/fuzz/tx_pool.cpp')
-rw-r--r-- | src/test/fuzz/tx_pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/tx_pool.cpp b/src/test/fuzz/tx_pool.cpp index 283a146369..a34e501fcc 100644 --- a/src/test/fuzz/tx_pool.cpp +++ b/src/test/fuzz/tx_pool.cpp @@ -8,8 +8,8 @@ #include <node/miner.h> #include <test/fuzz/FuzzedDataProvider.h> #include <test/fuzz/fuzz.h> -#include <test/fuzz/mempool_utils.h> #include <test/fuzz/util.h> +#include <test/fuzz/util/mempool.h> #include <test/util/mining.h> #include <test/util/script.h> #include <test/util/setup_common.h> |