diff options
author | glozow <gloriajzhao@gmail.com> | 2021-09-20 13:34:48 +0100 |
---|---|---|
committer | glozow <gloriajzhao@gmail.com> | 2021-09-20 13:34:48 +0100 |
commit | 0ef08f8bed537435f3f9db1e38b7d6f3551fe830 (patch) | |
tree | 5c58ab667f26a40743eb7a2f395033ce3e541a56 /src/policy/rbf.h | |
parent | c6abeb76fbb877f3f16d699c73a1828c7da2e6d1 (diff) |
add missing includes in policy/rbf
Diffstat (limited to 'src/policy/rbf.h')
-rw-r--r-- | src/policy/rbf.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/policy/rbf.h b/src/policy/rbf.h index 6031745d8f..be8c2e5b8b 100644 --- a/src/policy/rbf.h +++ b/src/policy/rbf.h @@ -5,7 +5,12 @@ #ifndef BITCOIN_POLICY_RBF_H #define BITCOIN_POLICY_RBF_H +#include <primitives/transaction.h> #include <txmempool.h> +#include <uint256.h> + +#include <optional> +#include <string> /** Maximum number of transactions that can be replaced by BIP125 RBF (Rule #5). This includes all * mempool conflicts and their descendants. */ |