aboutsummaryrefslogtreecommitdiff
path: root/src/node/psbt.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-09-11 10:29:00 +0800
committerfanquake <fanquake@gmail.com>2021-09-30 07:41:57 +0800
commitd09071da5bc997f2de1f55ca7a9babc3d7619329 (patch)
treed786d12dffa41365c5e381a220454ab06f5eaff1 /src/node/psbt.cpp
parent419afa93419e6840f78cb94b4a39d826eb10e139 (diff)
downloadbitcoin-d09071da5bc997f2de1f55ca7a9babc3d7619329.tar.xz
[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/node/psbt.cpp')
-rw-r--r--src/node/psbt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/psbt.cpp b/src/node/psbt.cpp
index b013b6d579..9ad65d15d2 100644
--- a/src/node/psbt.cpp
+++ b/src/node/psbt.cpp
@@ -2,8 +2,8 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
-#include <amount.h>
#include <coins.h>
+#include <consensus/amount.h>
#include <consensus/tx_verify.h>
#include <node/psbt.h>
#include <policy/policy.h>