aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-wallet.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-10-24 19:27:51 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-10-30 21:43:49 +0300
commit3431839c33fa3892c982322e4add39e28ddba719 (patch)
tree1710a330d0ac2b224c72639f9a65de54058cb82d /src/bitcoin-wallet.cpp
parente77d9679fd0c6ad3be997e6160ccdbfc11ac7be7 (diff)
downloadbitcoin-3431839c33fa3892c982322e4add39e28ddba719.tar.xz
util, refactor: Improve headers for bitcoin-wallet tool
Diffstat (limited to 'src/bitcoin-wallet.cpp')
-rw-r--r--src/bitcoin-wallet.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bitcoin-wallet.cpp b/src/bitcoin-wallet.cpp
index 77e0bd9a16..687d953afc 100644
--- a/src/bitcoin-wallet.cpp
+++ b/src/bitcoin-wallet.cpp
@@ -8,14 +8,21 @@
#include <chainparams.h>
#include <chainparamsbase.h>
+#include <clientversion.h>
#include <interfaces/init.h>
+#include <key.h>
#include <logging.h>
+#include <pubkey.h>
+#include <tinyformat.h>
#include <util/system.h>
#include <util/translation.h>
#include <util/url.h>
#include <wallet/wallettool.h>
+#include <exception>
#include <functional>
+#include <string>
+#include <tuple>
const std::function<std::string(const char*)> G_TRANSLATION_FUN = nullptr;
UrlDecodeFn* const URL_DECODE = nullptr;