aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/blockchain.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-03-27 16:12:02 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-03-29 09:56:47 +0200
commitf885b670290d39e697995fd2d35dc36edc104011 (patch)
treed9e10fce74ee4be50176b77be86b00f9df092484 /src/rpc/blockchain.h
parent8d8f28dd52fc9f78f57842f94842c8433f1811be (diff)
downloadbitcoin-f885b670290d39e697995fd2d35dc36edc104011.tar.xz
refactor: Make rest.cpp dependency on `*toJSON` in `blockchain.cpp` explicit
Diffstat (limited to 'src/rpc/blockchain.h')
-rw-r--r--src/rpc/blockchain.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/rpc/blockchain.h b/src/rpc/blockchain.h
index 8821f297f6..c021441b0a 100644
--- a/src/rpc/blockchain.h
+++ b/src/rpc/blockchain.h
@@ -5,7 +5,12 @@
#ifndef BITCOIN_RPC_BLOCKCHAIN_H
#define BITCOIN_RPC_BLOCKCHAIN_H
+class CBlock;
class CBlockIndex;
+class CScript;
+class CTransaction;
+class uint256;
+class UniValue;
/**
* Get the difficulty of the net wrt to the given block index, or the chain tip if
@@ -19,5 +24,17 @@ double GetDifficulty(const CBlockIndex* blockindex = nullptr);
/** Callback for when block tip changed. */
void RPCNotifyBlockChange(bool ibd, const CBlockIndex *);
+/** Block description to JSON */
+UniValue blockToJSON(const CBlock& block, const CBlockIndex* blockindex, bool txDetails = false);
+
+/** Mempool information to JSON */
+UniValue mempoolInfoToJSON();
+
+/** Mempool to JSON */
+UniValue mempoolToJSON(bool fVerbose = false);
+
+/** Block header to JSON */
+UniValue blockheaderToJSON(const CBlockIndex* blockindex);
+
#endif