diff options
| author | MarcoFalke <[email protected]> | 2018-11-06 10:40:50 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-11-09 12:37:06 -0500 |
| commit | fa0d36f712c50cce82b275e5f5dbb8ed9601a443 (patch) | |
| tree | ebbea0ca254d633bca652f6b7ac6cd3fd12cf1a3 /src/rpc/mining.cpp | |
| parent | Merge #14437: Refactor: Start to separate wallet from node (diff) | |
| download | discoin-fa0d36f712c50cce82b275e5f5dbb8ed9601a443.tar.xz discoin-fa0d36f712c50cce82b275e5f5dbb8ed9601a443.zip | |
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/mining.cpp')
| -rw-r--r-- | src/rpc/mining.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 58b54c66d..8751991fc 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -18,10 +18,11 @@ #include <rpc/blockchain.h> #include <rpc/mining.h> #include <rpc/server.h> +#include <rpc/util.h> #include <shutdown.h> #include <txmempool.h> -#include <util/system.h> #include <util/strencodings.h> +#include <util/system.h> #include <validation.h> #include <validationinterface.h> #include <versionbitsinfo.h> |