aboutsummaryrefslogtreecommitdiff
path: root/src/bench/rpc_mempool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bench/rpc_mempool.cpp')
-rw-r--r--src/bench/rpc_mempool.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/bench/rpc_mempool.cpp b/src/bench/rpc_mempool.cpp
index a55aa0c794..6e8757bbd5 100644
--- a/src/bench/rpc_mempool.cpp
+++ b/src/bench/rpc_mempool.cpp
@@ -3,14 +3,19 @@
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <bench/bench.h>
+#include <consensus/amount.h>
#include <kernel/cs_main.h>
-#include <kernel/mempool_entry.h>
+#include <primitives/transaction.h>
#include <rpc/mempool.h>
+#include <script/script.h>
+#include <sync.h>
#include <test/util/setup_common.h>
#include <txmempool.h>
-#include <util/chaintype.h>
-
#include <univalue.h>
+#include <util/check.h>
+
+#include <memory>
+#include <vector>
static void AddTx(const CTransactionRef& tx, const CAmount& fee, CTxMemPool& pool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, pool.cs)