aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-tx.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-09-14 09:09:02 +0100
committerfanquake <fanquake@gmail.com>2022-09-14 09:10:04 +0100
commitf839697d9b89002d020997154e182ddb4dccf45b (patch)
tree8f47d6e7b0c69d7c666621e7090e14d739c88c54 /src/bitcoin-tx.cpp
parent13fd9ee5c2d747e9f74d3fd8e33a4f0c9eaa769c (diff)
downloadbitcoin-f839697d9b89002d020997154e182ddb4dccf45b.tar.xz
build: remove BOOST_CPPFLAGS usage from bitcoin-tx
The only reason BOOST_CPPFLAGS is needed here, is because of the policy/rbf.h include, which ultimately includes boost multi_index via txmempool.h. However this include is actually unused.
Diffstat (limited to 'src/bitcoin-tx.cpp')
-rw-r--r--src/bitcoin-tx.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp
index c2bb89b8cf..d49dc72abf 100644
--- a/src/bitcoin-tx.cpp
+++ b/src/bitcoin-tx.cpp
@@ -15,7 +15,6 @@
#include <key_io.h>
#include <fs.h>
#include <policy/policy.h>
-#include <policy/rbf.h>
#include <primitives/transaction.h>
#include <script/script.h>
#include <script/sign.h>