Bitcoin Core  25.99.0
P2P Digital Currency
blockfilterindex.cpp
Go to the documentation of this file.
1 // Copyright (c) 2018-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 #include <map>
6 
7 #include <common/args.h>
8 #include <dbwrapper.h>
9 #include <hash.h>
10 #include <index/blockfilterindex.h>
11 #include <node/blockstorage.h>
12 #include <util/fs_helpers.h>
13 #include <validation.h>
14 
15 /* The index database stores three items for each block: the disk location of the encoded filter,
16  * its dSHA256 hash, and the header. Those belonging to blocks on the active chain are indexed by
17  * height, and those belonging to blocks that have been reorganized out of the active chain are
18  * indexed by block hash. This ensures that filter data for any block that becomes part of the
19  * active chain can always be retrieved, alleviating timing concerns.
20  *
21  * The filters themselves are stored in flat files and referenced by the LevelDB entries. This
22  * minimizes the amount of data written to LevelDB and keeps the database values constant size. The
23  * disk location of the next block filter to be written (represented as a FlatFilePos) is stored
24  * under the DB_FILTER_POS key.
25  *
26  * Keys for the height index have the type [DB_BLOCK_HEIGHT, uint32 (BE)]. The height is represented
27  * as big-endian so that sequential reads of filters by height are fast.
28  * Keys for the hash index have the type [DB_BLOCK_HASH, uint256].
29  */
30 constexpr uint8_t DB_BLOCK_HASH{'s'};
31 constexpr uint8_t DB_BLOCK_HEIGHT{'t'};
32 constexpr uint8_t DB_FILTER_POS{'P'};
33 
34 constexpr unsigned int MAX_FLTR_FILE_SIZE = 0x1000000; // 16 MiB
36 constexpr unsigned int FLTR_FILE_CHUNK_SIZE = 0x100000; // 1 MiB
42 constexpr size_t CF_HEADERS_CACHE_MAX_SZ{2000};
43 
44 namespace {
45 
46 struct DBVal {
47  uint256 hash;
48  uint256 header;
49  FlatFilePos pos;
50 
51  SERIALIZE_METHODS(DBVal, obj) { READWRITE(obj.hash, obj.header, obj.pos); }
52 };
53 
54 struct DBHeightKey {
55  int height;
56 
57  explicit DBHeightKey(int height_in) : height(height_in) {}
58 
59  template<typename Stream>
60  void Serialize(Stream& s) const
61  {
63  ser_writedata32be(s, height);
64  }
65 
66  template<typename Stream>
67  void Unserialize(Stream& s)
68  {
69  const uint8_t prefix{ser_readdata8(s)};
70  if (prefix != DB_BLOCK_HEIGHT) {
71  throw std::ios_base::failure("Invalid format for block filter index DB height key");
72  }
73  height = ser_readdata32be(s);
74  }
75 };
76 
77 struct DBHashKey {
78  uint256 hash;
79 
80  explicit DBHashKey(const uint256& hash_in) : hash(hash_in) {}
81 
82  SERIALIZE_METHODS(DBHashKey, obj) {
83  uint8_t prefix{DB_BLOCK_HASH};
85  if (prefix != DB_BLOCK_HASH) {
86  throw std::ios_base::failure("Invalid format for block filter index DB hash key");
87  }
88 
89  READWRITE(obj.hash);
90  }
91 };
92 
93 }; // namespace
94 
95 static std::map<BlockFilterType, BlockFilterIndex> g_filter_indexes;
96 
97 BlockFilterIndex::BlockFilterIndex(std::unique_ptr<interfaces::Chain> chain, BlockFilterType filter_type,
98  size_t n_cache_size, bool f_memory, bool f_wipe)
99  : BaseIndex(std::move(chain), BlockFilterTypeName(filter_type) + " block filter index")
100  , m_filter_type(filter_type)
101 {
102  const std::string& filter_name = BlockFilterTypeName(filter_type);
103  if (filter_name.empty()) throw std::invalid_argument("unknown filter_type");
104 
105  fs::path path = gArgs.GetDataDirNet() / "indexes" / "blockfilter" / fs::u8path(filter_name);
107 
108  m_db = std::make_unique<BaseIndex::DB>(path / "db", n_cache_size, f_memory, f_wipe);
109  m_filter_fileseq = std::make_unique<FlatFileSeq>(std::move(path), "fltr", FLTR_FILE_CHUNK_SIZE);
110 }
111 
112 bool BlockFilterIndex::CustomInit(const std::optional<interfaces::BlockKey>& block)
113 {
114  if (!m_db->Read(DB_FILTER_POS, m_next_filter_pos)) {
115  // Check that the cause of the read failure is that the key does not exist. Any other errors
116  // indicate database corruption or a disk failure, and starting the index would cause
117  // further corruption.
118  if (m_db->Exists(DB_FILTER_POS)) {
119  return error("%s: Cannot read current %s state; index may be corrupted",
120  __func__, GetName());
121  }
122 
123  // If the DB_FILTER_POS is not set, then initialize to the first location.
126  }
127  return true;
128 }
129 
131 {
132  const FlatFilePos& pos = m_next_filter_pos;
133 
134  // Flush current filter file to disk.
135  AutoFile file{m_filter_fileseq->Open(pos)};
136  if (file.IsNull()) {
137  return error("%s: Failed to open filter file %d", __func__, pos.nFile);
138  }
139  if (!FileCommit(file.Get())) {
140  return error("%s: Failed to commit filter file %d", __func__, pos.nFile);
141  }
142 
143  batch.Write(DB_FILTER_POS, pos);
144  return true;
145 }
146 
147 bool BlockFilterIndex::ReadFilterFromDisk(const FlatFilePos& pos, const uint256& hash, BlockFilter& filter) const
148 {
149  AutoFile filein{m_filter_fileseq->Open(pos, true)};
150  if (filein.IsNull()) {
151  return false;
152  }
153 
154  // Check that the hash of the encoded_filter matches the one stored in the db.
155  uint256 block_hash;
156  std::vector<uint8_t> encoded_filter;
157  try {
158  filein >> block_hash >> encoded_filter;
159  if (Hash(encoded_filter) != hash) return error("Checksum mismatch in filter decode.");
160  filter = BlockFilter(GetFilterType(), block_hash, std::move(encoded_filter), /*skip_decode_check=*/true);
161  }
162  catch (const std::exception& e) {
163  return error("%s: Failed to deserialize block filter from disk: %s", __func__, e.what());
164  }
165 
166  return true;
167 }
168 
170 {
171  assert(filter.GetFilterType() == GetFilterType());
172 
173  size_t data_size =
176 
177  // If writing the filter would overflow the file, flush and move to the next one.
178  if (pos.nPos + data_size > MAX_FLTR_FILE_SIZE) {
179  AutoFile last_file{m_filter_fileseq->Open(pos)};
180  if (last_file.IsNull()) {
181  LogPrintf("%s: Failed to open filter file %d\n", __func__, pos.nFile);
182  return 0;
183  }
184  if (!TruncateFile(last_file.Get(), pos.nPos)) {
185  LogPrintf("%s: Failed to truncate filter file %d\n", __func__, pos.nFile);
186  return 0;
187  }
188  if (!FileCommit(last_file.Get())) {
189  LogPrintf("%s: Failed to commit filter file %d\n", __func__, pos.nFile);
190  return 0;
191  }
192 
193  pos.nFile++;
194  pos.nPos = 0;
195  }
196 
197  // Pre-allocate sufficient space for filter data.
198  bool out_of_space;
199  m_filter_fileseq->Allocate(pos, data_size, out_of_space);
200  if (out_of_space) {
201  LogPrintf("%s: out of disk space\n", __func__);
202  return 0;
203  }
204 
205  AutoFile fileout{m_filter_fileseq->Open(pos)};
206  if (fileout.IsNull()) {
207  LogPrintf("%s: Failed to open filter file %d\n", __func__, pos.nFile);
208  return 0;
209  }
210 
211  fileout << filter.GetBlockHash() << filter.GetEncodedFilter();
212  return data_size;
213 }
214 
216 {
217  CBlockUndo block_undo;
218  uint256 prev_header;
219 
220  if (block.height > 0) {
221  // pindex variable gives indexing code access to node internals. It
222  // will be removed in upcoming commit
223  const CBlockIndex* pindex = WITH_LOCK(cs_main, return m_chainstate->m_blockman.LookupBlockIndex(block.hash));
224  if (!m_chainstate->m_blockman.UndoReadFromDisk(block_undo, *pindex)) {
225  return false;
226  }
227 
228  std::pair<uint256, DBVal> read_out;
229  if (!m_db->Read(DBHeightKey(block.height - 1), read_out)) {
230  return false;
231  }
232 
233  uint256 expected_block_hash = *Assert(block.prev_hash);
234  if (read_out.first != expected_block_hash) {
235  return error("%s: previous block header belongs to unexpected block %s; expected %s",
236  __func__, read_out.first.ToString(), expected_block_hash.ToString());
237  }
238 
239  prev_header = read_out.second.header;
240  }
241 
242  BlockFilter filter(m_filter_type, *Assert(block.data), block_undo);
243 
244  size_t bytes_written = WriteFilterToDisk(m_next_filter_pos, filter);
245  if (bytes_written == 0) return false;
246 
247  std::pair<uint256, DBVal> value;
248  value.first = block.hash;
249  value.second.hash = filter.GetHash();
250  value.second.header = filter.ComputeHeader(prev_header);
251  value.second.pos = m_next_filter_pos;
252 
253  if (!m_db->Write(DBHeightKey(block.height), value)) {
254  return false;
255  }
256 
257  m_next_filter_pos.nPos += bytes_written;
258  return true;
259 }
260 
262  const std::string& index_name,
263  int start_height, int stop_height)
264 {
265  DBHeightKey key(start_height);
266  db_it.Seek(key);
267 
268  for (int height = start_height; height <= stop_height; ++height) {
269  if (!db_it.GetKey(key) || key.height != height) {
270  return error("%s: unexpected key in %s: expected (%c, %d)",
271  __func__, index_name, DB_BLOCK_HEIGHT, height);
272  }
273 
274  std::pair<uint256, DBVal> value;
275  if (!db_it.GetValue(value)) {
276  return error("%s: unable to read value in %s at key (%c, %d)",
277  __func__, index_name, DB_BLOCK_HEIGHT, height);
278  }
279 
280  batch.Write(DBHashKey(value.first), std::move(value.second));
281 
282  db_it.Next();
283  }
284  return true;
285 }
286 
288 {
289  CDBBatch batch(*m_db);
290  std::unique_ptr<CDBIterator> db_it(m_db->NewIterator());
291 
292  // During a reorg, we need to copy all filters for blocks that are getting disconnected from the
293  // height index to the hash index so we can still find them when the height index entries are
294  // overwritten.
295  if (!CopyHeightIndexToHashIndex(*db_it, batch, m_name, new_tip.height, current_tip.height)) {
296  return false;
297  }
298 
299  // The latest filter position gets written in Commit by the call to the BaseIndex::Rewind.
300  // But since this creates new references to the filter, the position should get updated here
301  // atomically as well in case Commit fails.
303  if (!m_db->WriteBatch(batch)) return false;
304 
305  return true;
306 }
307 
308 static bool LookupOne(const CDBWrapper& db, const CBlockIndex* block_index, DBVal& result)
309 {
310  // First check if the result is stored under the height index and the value there matches the
311  // block hash. This should be the case if the block is on the active chain.
312  std::pair<uint256, DBVal> read_out;
313  if (!db.Read(DBHeightKey(block_index->nHeight), read_out)) {
314  return false;
315  }
316  if (read_out.first == block_index->GetBlockHash()) {
317  result = std::move(read_out.second);
318  return true;
319  }
320 
321  // If value at the height index corresponds to an different block, the result will be stored in
322  // the hash index.
323  return db.Read(DBHashKey(block_index->GetBlockHash()), result);
324 }
325 
326 static bool LookupRange(CDBWrapper& db, const std::string& index_name, int start_height,
327  const CBlockIndex* stop_index, std::vector<DBVal>& results)
328 {
329  if (start_height < 0) {
330  return error("%s: start height (%d) is negative", __func__, start_height);
331  }
332  if (start_height > stop_index->nHeight) {
333  return error("%s: start height (%d) is greater than stop height (%d)",
334  __func__, start_height, stop_index->nHeight);
335  }
336 
337  size_t results_size = static_cast<size_t>(stop_index->nHeight - start_height + 1);
338  std::vector<std::pair<uint256, DBVal>> values(results_size);
339 
340  DBHeightKey key(start_height);
341  std::unique_ptr<CDBIterator> db_it(db.NewIterator());
342  db_it->Seek(DBHeightKey(start_height));
343  for (int height = start_height; height <= stop_index->nHeight; ++height) {
344  if (!db_it->Valid() || !db_it->GetKey(key) || key.height != height) {
345  return false;
346  }
347 
348  size_t i = static_cast<size_t>(height - start_height);
349  if (!db_it->GetValue(values[i])) {
350  return error("%s: unable to read value in %s at key (%c, %d)",
351  __func__, index_name, DB_BLOCK_HEIGHT, height);
352  }
353 
354  db_it->Next();
355  }
356 
357  results.resize(results_size);
358 
359  // Iterate backwards through block indexes collecting results in order to access the block hash
360  // of each entry in case we need to look it up in the hash index.
361  for (const CBlockIndex* block_index = stop_index;
362  block_index && block_index->nHeight >= start_height;
363  block_index = block_index->pprev) {
364  uint256 block_hash = block_index->GetBlockHash();
365 
366  size_t i = static_cast<size_t>(block_index->nHeight - start_height);
367  if (block_hash == values[i].first) {
368  results[i] = std::move(values[i].second);
369  continue;
370  }
371 
372  if (!db.Read(DBHashKey(block_hash), results[i])) {
373  return error("%s: unable to read value in %s at key (%c, %s)",
374  __func__, index_name, DB_BLOCK_HASH, block_hash.ToString());
375  }
376  }
377 
378  return true;
379 }
380 
381 bool BlockFilterIndex::LookupFilter(const CBlockIndex* block_index, BlockFilter& filter_out) const
382 {
383  DBVal entry;
384  if (!LookupOne(*m_db, block_index, entry)) {
385  return false;
386  }
387 
388  return ReadFilterFromDisk(entry.pos, entry.hash, filter_out);
389 }
390 
391 bool BlockFilterIndex::LookupFilterHeader(const CBlockIndex* block_index, uint256& header_out)
392 {
394 
395  bool is_checkpoint{block_index->nHeight % CFCHECKPT_INTERVAL == 0};
396 
397  if (is_checkpoint) {
398  // Try to find the block in the headers cache if this is a checkpoint height.
399  auto header = m_headers_cache.find(block_index->GetBlockHash());
400  if (header != m_headers_cache.end()) {
401  header_out = header->second;
402  return true;
403  }
404  }
405 
406  DBVal entry;
407  if (!LookupOne(*m_db, block_index, entry)) {
408  return false;
409  }
410 
411  if (is_checkpoint &&
412  m_headers_cache.size() < CF_HEADERS_CACHE_MAX_SZ) {
413  // Add to the headers cache if this is a checkpoint height.
414  m_headers_cache.emplace(block_index->GetBlockHash(), entry.header);
415  }
416 
417  header_out = entry.header;
418  return true;
419 }
420 
421 bool BlockFilterIndex::LookupFilterRange(int start_height, const CBlockIndex* stop_index,
422  std::vector<BlockFilter>& filters_out) const
423 {
424  std::vector<DBVal> entries;
425  if (!LookupRange(*m_db, m_name, start_height, stop_index, entries)) {
426  return false;
427  }
428 
429  filters_out.resize(entries.size());
430  auto filter_pos_it = filters_out.begin();
431  for (const auto& entry : entries) {
432  if (!ReadFilterFromDisk(entry.pos, entry.hash, *filter_pos_it)) {
433  return false;
434  }
435  ++filter_pos_it;
436  }
437 
438  return true;
439 }
440 
441 bool BlockFilterIndex::LookupFilterHashRange(int start_height, const CBlockIndex* stop_index,
442  std::vector<uint256>& hashes_out) const
443 
444 {
445  std::vector<DBVal> entries;
446  if (!LookupRange(*m_db, m_name, start_height, stop_index, entries)) {
447  return false;
448  }
449 
450  hashes_out.clear();
451  hashes_out.reserve(entries.size());
452  for (const auto& entry : entries) {
453  hashes_out.push_back(entry.hash);
454  }
455  return true;
456 }
457 
459 {
460  auto it = g_filter_indexes.find(filter_type);
461  return it != g_filter_indexes.end() ? &it->second : nullptr;
462 }
463 
464 void ForEachBlockFilterIndex(std::function<void (BlockFilterIndex&)> fn)
465 {
466  for (auto& entry : g_filter_indexes) fn(entry.second);
467 }
468 
469 bool InitBlockFilterIndex(std::function<std::unique_ptr<interfaces::Chain>()> make_chain, BlockFilterType filter_type,
470  size_t n_cache_size, bool f_memory, bool f_wipe)
471 {
472  auto result = g_filter_indexes.emplace(std::piecewise_construct,
473  std::forward_as_tuple(filter_type),
474  std::forward_as_tuple(make_chain(), filter_type,
475  n_cache_size, f_memory, f_wipe));
476  return result.second;
477 }
478 
480 {
481  return g_filter_indexes.erase(filter_type);
482 }
483 
485 {
486  g_filter_indexes.clear();
487 }
ArgsManager gArgs
Definition: args.cpp:42
const std::string & BlockFilterTypeName(BlockFilterType filter_type)
Get the human-readable name for a filter type.
BlockFilterType
Definition: blockfilter.h:90
constexpr unsigned int FLTR_FILE_CHUNK_SIZE
The pre-allocation chunk size for fltr?????.dat files.
bool DestroyBlockFilterIndex(BlockFilterType filter_type)
Destroy the block filter index with the given type.
void DestroyAllBlockFilterIndexes()
Destroy all open block filter indexes.
static bool CopyHeightIndexToHashIndex(CDBIterator &db_it, CDBBatch &batch, const std::string &index_name, int start_height, int stop_height)
constexpr uint8_t DB_FILTER_POS
static bool LookupOne(const CDBWrapper &db, const CBlockIndex *block_index, DBVal &result)
BlockFilterIndex * GetBlockFilterIndex(BlockFilterType filter_type)
Get a block filter index by type.
constexpr unsigned int MAX_FLTR_FILE_SIZE
constexpr uint8_t DB_BLOCK_HASH
void ForEachBlockFilterIndex(std::function< void(BlockFilterIndex &)> fn)
Iterate over all running block filter indexes, invoking fn on each.
constexpr size_t CF_HEADERS_CACHE_MAX_SZ
Maximum size of the cfheaders cache We have a limit to prevent a bug in filling this cache potentiall...
bool InitBlockFilterIndex(std::function< std::unique_ptr< interfaces::Chain >()> make_chain, BlockFilterType filter_type, size_t n_cache_size, bool f_memory, bool f_wipe)
Initialize a block filter index for the given type if one does not already exist.
static bool LookupRange(CDBWrapper &db, const std::string &index_name, int start_height, const CBlockIndex *stop_index, std::vector< DBVal > &results)
constexpr uint8_t DB_BLOCK_HEIGHT
static std::map< BlockFilterType, BlockFilterIndex > g_filter_indexes
static constexpr int CFCHECKPT_INTERVAL
Interval between compact filter checkpoints.
#define Assert(val)
Identity function.
Definition: check.h:73
const fs::path & GetDataDirNet() const
Get data directory path with appended network identifier.
Definition: args.h:231
Non-refcounted RAII wrapper for FILE*.
Definition: streams.h:480
Base class for indices of blockchain data.
Definition: base.h:34
const std::string & GetName() const LIFETIMEBOUND
Get the name of the index for display in logs.
Definition: base.h:123
const std::string m_name
Definition: base.h:100
Chainstate * m_chainstate
Definition: base.h:99
Complete block filter struct as defined in BIP 157.
Definition: blockfilter.h:112
uint256 ComputeHeader(const uint256 &prev_header) const
Compute the filter header given the previous one.
BlockFilterType GetFilterType() const
Definition: blockfilter.h:131
uint256 GetHash() const
Compute the filter hash.
const uint256 & GetBlockHash() const LIFETIMEBOUND
Definition: blockfilter.h:132
const std::vector< unsigned char > & GetEncodedFilter() const LIFETIMEBOUND
Definition: blockfilter.h:135
BlockFilterIndex is used to store and retrieve block filters, hashes, and headers for a range of bloc...
std::unique_ptr< BaseIndex::DB > m_db
bool LookupFilterRange(int start_height, const CBlockIndex *stop_index, std::vector< BlockFilter > &filters_out) const
Get a range of filters between two heights on a chain.
bool CustomInit(const std::optional< interfaces::BlockKey > &block) override
Initialize internal state from the database and block index.
BlockFilterType GetFilterType() const
bool CustomCommit(CDBBatch &batch) override
Virtual method called internally by Commit that can be overridden to atomically commit more index sta...
BlockFilterType m_filter_type
BlockFilterIndex(std::unique_ptr< interfaces::Chain > chain, BlockFilterType filter_type, size_t n_cache_size, bool f_memory=false, bool f_wipe=false)
Constructs the index, which becomes available to be queried.
std::unique_ptr< FlatFileSeq > m_filter_fileseq
bool LookupFilter(const CBlockIndex *block_index, BlockFilter &filter_out) const
Get a single filter by block.
bool ReadFilterFromDisk(const FlatFilePos &pos, const uint256 &hash, BlockFilter &filter) const
bool LookupFilterHashRange(int start_height, const CBlockIndex *stop_index, std::vector< uint256 > &hashes_out) const
Get a range of filter hashes between two heights on a chain.
bool CustomAppend(const interfaces::BlockInfo &block) override
Write update index entries for a newly connected block.
bool CustomRewind(const interfaces::BlockKey &current_tip, const interfaces::BlockKey &new_tip) override
Rewind index to an earlier chain tip during a chain reorg.
size_t WriteFilterToDisk(FlatFilePos &pos, const BlockFilter &filter)
bool LookupFilterHeader(const CBlockIndex *block_index, uint256 &header_out) EXCLUSIVE_LOCKS_REQUIRED(!m_cs_headers_cache)
Get a single filter header by block.
FlatFilePos m_next_filter_pos
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:151
uint256 GetBlockHash() const
Definition: chain.h:259
int nHeight
height of the entry in the chain. The genesis block has height 0
Definition: chain.h:163
Undo information for a CBlock.
Definition: undo.h:64
Batch of changes queued to be written to a CDBWrapper.
Definition: dbwrapper.h:87
void Write(const K &key, const V &value)
Definition: dbwrapper.h:112
bool GetValue(V &value)
Definition: dbwrapper.h:197
bool GetKey(K &key)
Definition: dbwrapper.h:186
void Seek(const K &key)
Definition: dbwrapper.h:176
void Next()
Definition: dbwrapper.cpp:257
CDBIterator * NewIterator()
Definition: dbwrapper.h:336
bool Read(const K &key, V &value) const
Definition: dbwrapper.h:263
node::BlockManager & m_blockman
Reference to a BlockManager instance which itself is shared across all Chainstate instances.
Definition: validation.h:505
std::string ToString() const
Definition: uint256.cpp:55
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:31
CBlockIndex * LookupBlockIndex(const uint256 &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
bool UndoReadFromDisk(CBlockUndo &blockundo, const CBlockIndex &index) const
256-bit opaque blob.
Definition: uint256.h:105
static const int CLIENT_VERSION
bitcoind-res.rc includes this file, but it cannot cope with real c++ code.
Definition: clientversion.h:33
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
bool TruncateFile(FILE *file, unsigned int length)
Definition: fs_helpers.cpp:162
bool FileCommit(FILE *file)
Ensure file contents are fully committed to disk, using a platform-specific feature analogous to fsyn...
Definition: fs_helpers.cpp:120
uint256 Hash(const T &in1)
Compute the 256-bit hash of an object.
Definition: hash.h:76
bool error(const char *fmt, const Args &... args)
Definition: logging.h:261
#define LogPrintf(...)
Definition: logging.h:236
static path u8path(const std::string &utf8_str)
Definition: fs.h:70
static bool create_directories(const std::filesystem::path &p)
Create directory (and if necessary its parents), unless the leaf directory already exists or is a sym...
Definition: fs.h:188
const char * prefix
Definition: rest.cpp:1004
static const int64_t values[]
A selection of numbers that do not trigger int64_t overflow when added/subtracted.
uint8_t ser_readdata8(Stream &s)
Definition: serialize.h:82
void ser_writedata32be(Stream &s, uint32_t obj)
Definition: serialize.h:72
#define SERIALIZE_METHODS(cls, obj)
Implement the Serialize and Unserialize methods by delegating to a single templated static method tha...
Definition: serialize.h:176
void Unserialize(Stream &, char)=delete
void ser_writedata8(Stream &s, uint8_t obj)
Definition: serialize.h:53
size_t GetSerializeSize(const T &t, int nVersion=0)
Definition: serialize.h:1109
uint32_t ser_readdata32be(Stream &s)
Definition: serialize.h:106
#define READWRITE(...)
Definition: serialize.h:140
void Serialize(Stream &, char)=delete
int nFile
Definition: flatfile.h:16
unsigned int nPos
Definition: flatfile.h:17
Block data sent with blockConnected, blockDisconnected notifications.
Definition: chain.h:82
const uint256 * prev_hash
Definition: chain.h:84
const CBlock * data
Definition: chain.h:88
const uint256 & hash
Definition: chain.h:83
Hash/height pair to help track and identify blocks.
Definition: chain.h:43
#define LOCK(cs)
Definition: sync.h:258
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
Definition: sync.h:302
assert(!tx.IsCoinBase())