Bitcoin Core  27.99.0
P2P Digital Currency
blockchain.h
Go to the documentation of this file.
1 // Copyright (c) 2017-2022 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_RPC_BLOCKCHAIN_H
6 #define BITCOIN_RPC_BLOCKCHAIN_H
7 
8 #include <consensus/amount.h>
9 #include <core_io.h>
10 #include <streams.h>
11 #include <sync.h>
12 #include <util/fs.h>
13 #include <validation.h>
14 
15 #include <any>
16 #include <stdint.h>
17 #include <vector>
18 
19 class CBlock;
20 class CBlockIndex;
21 class Chainstate;
22 class UniValue;
23 namespace node {
24 struct NodeContext;
25 } // namespace node
26 
27 static constexpr int NUM_GETBLOCKSTATS_PERCENTILES = 5;
28 
35 double GetDifficulty(const CBlockIndex& blockindex);
36 
39 
41 UniValue blockToJSON(node::BlockManager& blockman, const CBlock& block, const CBlockIndex& tip, const CBlockIndex& blockindex, TxVerbosity verbosity) LOCKS_EXCLUDED(cs_main);
42 
45 
47 void CalculatePercentilesByWeight(CAmount result[NUM_GETBLOCKSTATS_PERCENTILES], std::vector<std::pair<CAmount, int64_t>>& scores, int64_t total_weight);
48 
55  Chainstate& chainstate,
56  AutoFile& afile,
57  const fs::path& path,
58  const fs::path& tmppath);
59 
60 #endif // BITCOIN_RPC_BLOCKCHAIN_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
UniValue blockToJSON(node::BlockManager &blockman, const CBlock &block, const CBlockIndex &tip, const CBlockIndex &blockindex, TxVerbosity verbosity) LOCKS_EXCLUDED(cs_main)
Block description to JSON.
Definition: blockchain.cpp:164
void RPCNotifyBlockChange(const CBlockIndex *)
Callback for when block tip changed.
Definition: blockchain.cpp:243
static constexpr int NUM_GETBLOCKSTATS_PERCENTILES
Definition: blockchain.h:27
double GetDifficulty(const CBlockIndex &blockindex)
Get the difficulty of the net wrt to the given block index.
Definition: blockchain.cpp:77
void CalculatePercentilesByWeight(CAmount result[NUM_GETBLOCKSTATS_PERCENTILES], std::vector< std::pair< CAmount, int64_t >> &scores, int64_t total_weight)
Used by getblockstats to get feerates at different percentiles by weight
UniValue CreateUTXOSnapshot(node::NodeContext &node, Chainstate &chainstate, AutoFile &afile, const fs::path &path, const fs::path &tmppath)
Helper to create UTXO snapshots given a chainstate and a file handle.
UniValue blockheaderToJSON(const CBlockIndex &tip, const CBlockIndex &blockindex) LOCKS_EXCLUDED(cs_main)
Block header to JSON.
Definition: blockchain.cpp:135
Non-refcounted RAII wrapper for FILE*.
Definition: streams.h:389
Definition: block.h:69
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:141
Chainstate stores and provides an API to update our local knowledge of the current best chain.
Definition: validation.h:491
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:33
Maintains a tree of blocks (stored in m_block_index) which is consulted to determine where the most-w...
Definition: blockstorage.h:137
TxVerbosity
Verbose level for block's transaction.
Definition: core_io.h:27
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
Definition: init.h:25
NodeContext struct containing references to chain state and connection state.
Definition: context.h:49
#define LOCKS_EXCLUDED(...)
Definition: threadsafety.h:48