mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 14:53:43 +01:00
interfaces, refactor: Add more block information to block connected notifications
Add new interfaces::BlockInfo struct to be able to pass extra block information (file and undo information) to indexes which they are updated to use high level interfaces::Chain notifications. This commit does not change behavior in any way.
This commit is contained in:
26
src/kernel/chain.cpp
Normal file
26
src/kernel/chain.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (c) 2022 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#include <chain.h>
|
||||
#include <interfaces/chain.h>
|
||||
#include <sync.h>
|
||||
#include <uint256.h>
|
||||
|
||||
class CBlock;
|
||||
|
||||
namespace kernel {
|
||||
interfaces::BlockInfo MakeBlockInfo(const CBlockIndex* index, const CBlock* data)
|
||||
{
|
||||
interfaces::BlockInfo info{index ? *index->phashBlock : uint256::ZERO};
|
||||
if (index) {
|
||||
info.prev_hash = index->pprev ? index->pprev->phashBlock : nullptr;
|
||||
info.height = index->nHeight;
|
||||
LOCK(::cs_main);
|
||||
info.file_number = index->nFile;
|
||||
info.data_pos = index->nDataPos;
|
||||
}
|
||||
info.data = data;
|
||||
return info;
|
||||
}
|
||||
} // namespace kernel
|
||||
Reference in New Issue
Block a user