2022-01-13 07:55:18 -05:00
|
|
|
// 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;
|
2023-04-13 22:14:41 -03:00
|
|
|
info.chain_time_max = index->GetBlockTimeMax();
|
2022-01-13 07:55:18 -05:00
|
|
|
LOCK(::cs_main);
|
|
|
|
info.file_number = index->nFile;
|
|
|
|
info.data_pos = index->nDataPos;
|
|
|
|
}
|
|
|
|
info.data = data;
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
} // namespace kernel
|