From fa0d36f712c50cce82b275e5f5dbb8ed9601a443 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 6 Nov 2018 10:40:50 -0500 Subject: [PATCH 1/2] 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. --- src/rpc/blockchain.cpp | 7 ++++--- src/rpc/mining.cpp | 3 ++- src/rpc/net.cpp | 5 +++-- src/rpc/rawtransaction.cpp | 6 +++--- src/rpc/server.cpp | 3 ++- src/wallet/rpcdump.cpp | 7 ++++--- src/zmq/zmqrpc.cpp | 1 + 7 files changed, 19 insertions(+), 13 deletions(-) diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 92f6f0fe1..a61857ca7 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -12,8 +12,8 @@ #include #include #include -#include #include +#include #include #include #include @@ -21,14 +21,15 @@ #include #include #include +#include #include