From 597a77892de3c9e6dd16172fe86898681203a149 Mon Sep 17 00:00:00 2001 From: Michel van Kessel Date: Sun, 20 Dec 2020 15:57:32 +0100 Subject: [PATCH] update rpc section --- src/rpc/blockchain.cpp | 68 +++++++++++++++++++++----------------- src/rpc/client.cpp | 7 ++-- src/rpc/mining.cpp | 63 ++++++++++++++++++----------------- src/rpc/misc.cpp | 55 +++++++++++++++--------------- src/rpc/net.cpp | 58 ++++++++++++++++---------------- src/rpc/protocol.cpp | 18 +++++----- src/rpc/protocol.h | 56 +++++++++++++++---------------- src/rpc/rawtransaction.cpp | 67 +++++++++++++++++++------------------ 8 files changed, 201 insertions(+), 191 deletions(-) diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index b42dfd8fe..eed43768c 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -3,23 +3,29 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include "amount.h" -#include "chain.h" -#include "chainparams.h" -#include "checkpoints.h" -#include "coins.h" -#include "consensus/validation.h" -#include "dstencode.h" -#include "main.h" -#include "policy/policy.h" -#include "primitives/transaction.h" -#include "rpc/server.h" -#include "streams.h" -#include "sync.h" -#include "txmempool.h" -#include "util.h" -#include "utilstrencodings.h" -#include "hash.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include