aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/server.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-11-06 10:40:50 -0500
committerMarcoFalke <falke.marco@gmail.com>2018-11-09 12:37:06 -0500
commitfa0d36f712c50cce82b275e5f5dbb8ed9601a443 (patch)
treeebbea0ca254d633bca652f6b7ac6cd3fd12cf1a3 /src/rpc/server.cpp
parentcbf00939b5e813937fb21466aa3e229ca81cb6ba (diff)
downloadbitcoin-fa0d36f712c50cce82b275e5f5dbb8ed9601a443.tar.xz
rpc: Include rpc/util.h where needed for RPCHelpMan
Just a preparatory commit to add the header to the includes and run clang-format to sort the include lists. Splitting this up into a separate commit makes future scripted-diffs easier.
Diffstat (limited to 'src/rpc/server.cpp')
-rw-r--r--src/rpc/server.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp
index 78abd7b610..9d2c6ca0a6 100644
--- a/src/rpc/server.cpp
+++ b/src/rpc/server.cpp
@@ -8,11 +8,12 @@
#include <fs.h>
#include <key_io.h>
#include <random.h>
+#include <rpc/util.h>
#include <shutdown.h>
#include <sync.h>
#include <ui_interface.h>
-#include <util/system.h>
#include <util/strencodings.h>
+#include <util/system.h>
#include <boost/bind.hpp>
#include <boost/signals2/signal.hpp>