diff options
author | fanquake <fanquake@gmail.com> | 2021-09-11 10:29:00 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-09-30 07:41:57 +0800 |
commit | d09071da5bc997f2de1f55ca7a9babc3d7619329 (patch) | |
tree | d786d12dffa41365c5e381a220454ab06f5eaff1 /src/txmempool.h | |
parent | 419afa93419e6840f78cb94b4a39d826eb10e139 (diff) |
[MOVEONLY] consensus: move amount.h into consensus
Move amount.h to consensus/amount.h.
Renames, adds missing and removes uneeded includes.
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 27ee0628a7..0be51db181 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -14,8 +14,8 @@ #include <utility> #include <vector> -#include <amount.h> #include <coins.h> +#include <consensus/amount.h> #include <indirectmap.h> #include <policy/feerate.h> #include <policy/packages.h> |