53 bool mutation =
false;
54 while (hashes.size() > 1) {
61 for (
size_t pos = 0; pos + 1 < hashes.size(); pos += 2) {
62 if (hashes[pos] == hashes[pos + 1]) mutation =
true;
65 if (hashes.size() & 1) {
66 hashes.push_back(hashes.back());
68 SHA256D64(hashes[0].begin(), hashes[0].begin(), hashes.size() / 2);
69 hashes.resize(hashes.size() / 2);
71 if (mutated) *mutated = mutation;
72 if (hashes.size() == 0)
return uint256();
79 std::vector<uint256> leaves;
80 leaves.reserve((block.
vtx.size() + 1) & ~1ULL);
81 for (
size_t s = 0;
s < block.
vtx.size();
s++) {
82 leaves.push_back(block.
vtx[
s]->GetHash().ToUint256());
89 std::vector<uint256> leaves;
90 leaves.reserve((block.
vtx.size() + 1) & ~1ULL);
91 leaves.emplace_back();
92 for (
size_t s = 1;
s < block.
vtx.size();
s++) {
93 leaves.push_back(block.
vtx[
s]->GetWitnessHash().ToUint256());
99static void MerkleComputation(
const std::vector<uint256>& leaves, uint32_t leaf_pos, std::vector<uint256>& path)
102 Assume(leaves.size() <= UINT32_MAX);
103 if (leaves.size() == 0) {
117 while (
count < leaves.size()) {
119 bool matchh =
count == leaf_pos;
125 for (level = 0; !(
count & ((uint32_t{1}) << level)); level++) {
127 path.push_back(inner[level]);
128 }
else if (matchlevel == level) {
132 h =
Hash(inner[level], h);
146 while (!(
count & ((uint32_t{1}) << level))) {
150 bool matchh = matchlevel == level;
151 while (
count != ((uint32_t{1}) << level)) {
161 count += ((uint32_t{1}) << level);
164 while (!(
count & ((uint32_t{1}) << level))) {
166 path.push_back(inner[level]);
167 }
else if (matchlevel == level) {
171 h =
Hash(inner[level], h);
177static std::vector<uint256>
ComputeMerklePath(
const std::vector<uint256>& leaves, uint32_t position) {
178 std::vector<uint256>
ret;
185 std::vector<uint256> leaves;
186 leaves.resize(block.
vtx.size());
187 for (
size_t s = 0;
s < block.
vtx.size();
s++) {
188 leaves[
s] = block.
vtx[
s]->GetHash().ToUint256();
#define Assume(val)
Assume is the identity function.
std::vector< CTransactionRef > vtx
uint256 ComputeMerkleRoot(std::vector< uint256 > hashes, bool *mutated)
Compute a Merkle root from the provided leaf hashes.
uint256 BlockMerkleRoot(const CBlock &block, bool *mutated)
static std::vector< uint256 > ComputeMerklePath(const std::vector< uint256 > &leaves, uint32_t position)
static void MerkleComputation(const std::vector< uint256 > &leaves, uint32_t leaf_pos, std::vector< uint256 > &path)
std::vector< uint256 > TransactionMerklePath(const CBlock &block, uint32_t position)
Compute merkle path to the specified transaction.
uint256 BlockWitnessMerkleRoot(const CBlock &block)
uint256 Hash(const T &in1)
Compute the 256-bit hash of an object.
void SHA256D64(unsigned char *out, const unsigned char *in, size_t blocks)
Compute multiple double-SHA256's of 64-byte blobs.