mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-28 12:07:32 -03:00
51dbc167e9
Display the prevout in transaction inputs when calling getblock level 3 verbosity. Co-authored-by: Luke Dashjr <luke_github1@dashjr.org> Co-authored-by: 0xB10C <19157360+0xB10C@users.noreply.github.com>
70 lines
2.4 KiB
C++
70 lines
2.4 KiB
C++
// Copyright (c) 2017-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_RPC_BLOCKCHAIN_H
|
|
#define BITCOIN_RPC_BLOCKCHAIN_H
|
|
|
|
#include <consensus/amount.h>
|
|
#include <core_io.h>
|
|
#include <streams.h>
|
|
#include <sync.h>
|
|
|
|
#include <any>
|
|
#include <stdint.h>
|
|
#include <vector>
|
|
|
|
extern RecursiveMutex cs_main;
|
|
|
|
class CBlock;
|
|
class CBlockIndex;
|
|
class CBlockPolicyEstimator;
|
|
class CChainState;
|
|
class CTxMemPool;
|
|
class ChainstateManager;
|
|
class UniValue;
|
|
struct NodeContext;
|
|
|
|
static constexpr int NUM_GETBLOCKSTATS_PERCENTILES = 5;
|
|
|
|
/**
|
|
* Get the difficulty of the net wrt to the given block index.
|
|
*
|
|
* @return A floating point number that is a multiple of the main net minimum
|
|
* difficulty (4295032833 hashes).
|
|
*/
|
|
double GetDifficulty(const CBlockIndex* blockindex);
|
|
|
|
/** Callback for when block tip changed. */
|
|
void RPCNotifyBlockChange(const CBlockIndex*);
|
|
|
|
/** Block description to JSON */
|
|
UniValue blockToJSON(const CBlock& block, const CBlockIndex* tip, const CBlockIndex* blockindex, TxVerbosity verbosity) LOCKS_EXCLUDED(cs_main);
|
|
|
|
/** Mempool information to JSON */
|
|
UniValue MempoolInfoToJSON(const CTxMemPool& pool);
|
|
|
|
/** Mempool to JSON */
|
|
UniValue MempoolToJSON(const CTxMemPool& pool, bool verbose = false, bool include_mempool_sequence = false);
|
|
|
|
/** Block header to JSON */
|
|
UniValue blockheaderToJSON(const CBlockIndex* tip, const CBlockIndex* blockindex) LOCKS_EXCLUDED(cs_main);
|
|
|
|
/** Used by getblockstats to get feerates at different percentiles by weight */
|
|
void CalculatePercentilesByWeight(CAmount result[NUM_GETBLOCKSTATS_PERCENTILES], std::vector<std::pair<CAmount, int64_t>>& scores, int64_t total_weight);
|
|
|
|
NodeContext& EnsureAnyNodeContext(const std::any& context);
|
|
CTxMemPool& EnsureMemPool(const NodeContext& node);
|
|
CTxMemPool& EnsureAnyMemPool(const std::any& context);
|
|
ChainstateManager& EnsureChainman(const NodeContext& node);
|
|
ChainstateManager& EnsureAnyChainman(const std::any& context);
|
|
CBlockPolicyEstimator& EnsureFeeEstimator(const NodeContext& node);
|
|
CBlockPolicyEstimator& EnsureAnyFeeEstimator(const std::any& context);
|
|
|
|
/**
|
|
* Helper to create UTXO snapshots given a chainstate and a file handle.
|
|
* @return a UniValue map containing metadata about the snapshot.
|
|
*/
|
|
UniValue CreateUTXOSnapshot(NodeContext& node, CChainState& chainstate, CAutoFile& afile);
|
|
|
|
#endif
|