@@ -2134,9 +2134,11 @@ void UpdateCoinsIBDBooster(const CTransaction& tx, CCoinsViewCache& inputs, int
2134
2134
for (size_t i = 0; i < tx.vout.size(); ++i) {
2135
2135
// if we already know it gets spent up until assumevalid: add it to ibd booster muhash
2136
2136
if (!g_ibd_booster_hints.GetNextBit()) {
2137
- DataStream ss{};
2138
- ss << COutPoint(txid, i);
2139
- g_ibd_booster_muhash.Insert(MakeUCharSpan(ss));
2137
+ if (!tx.vout[i].scriptPubKey.IsUnspendable()) {
2138
+ DataStream ss{};
2139
+ ss << COutPoint(txid, i);
2140
+ g_ibd_booster_muhash.Insert(MakeUCharSpan(ss));
2141
+ }
2140
2142
// if we know it ends up in the assumevalid UTXO set: add it as usual
2141
2143
} else {
2142
2144
bool overwrite = tx_is_coinbase;
@@ -2760,6 +2762,19 @@ bool Chainstate::ConnectBlock(const CBlock& block, BlockValidationState& state,
2760
2762
UpdateCoinsIBDBooster(tx, view, pindex->nHeight);
2761
2763
}
2762
2764
}
2765
+
2766
+ if (pindex->nHeight == g_ibd_booster_hints.GetFinalBlockHeight()) {
2767
+ if (g_ibd_booster_muhash.IsEmptySet()) {
2768
+ LogInfo("*** IBD Booster: MuHash check at block height %d succeeded. ***\n", pindex->nHeight);
2769
+ } else {
2770
+ // TODO: find a proper way to signal this error; strictly speaking it's not a
2771
+ // block validation error, most likely the given hints data file was invalid
2772
+ state.Invalid(BlockValidationResult::BLOCK_CONSENSUS, "ibd-booster-muhash-not-empty-at-final-block",
2773
+ "fails the IBD-Booster-MuHash check (should be an empty set!)");
2774
+ }
2775
+ assert(false); /* stop here by now to see something from the log */
2776
+ }
2777
+
2763
2778
const auto time_3{SteadyClock::now()};
2764
2779
m_chainman.time_connect += time_3 - time_2;
2765
2780
LogDebug(BCLog::BENCH, " - Connect %u transactions: %.2fms (%.3fms/tx, %.3fms/txin) [%.2fs (%.2fms/blk)]\n", (unsigned)block.vtx.size(),
0 commit comments