Skip to content

Commit 631d0c7

Browse files
committed
IBD Booster: check that booster muhash is empty at final block
1 parent 5c2acc8 commit 631d0c7

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

src/validation.cpp

+18-3
Original file line numberDiff line numberDiff line change
@@ -2134,9 +2134,11 @@ void UpdateCoinsIBDBooster(const CTransaction& tx, CCoinsViewCache& inputs, int
21342134
for (size_t i = 0; i < tx.vout.size(); ++i) {
21352135
// if we already know it gets spent up until assumevalid: add it to ibd booster muhash
21362136
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+
}
21402142
// if we know it ends up in the assumevalid UTXO set: add it as usual
21412143
} else {
21422144
bool overwrite = tx_is_coinbase;
@@ -2760,6 +2762,19 @@ bool Chainstate::ConnectBlock(const CBlock& block, BlockValidationState& state,
27602762
UpdateCoinsIBDBooster(tx, view, pindex->nHeight);
27612763
}
27622764
}
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+
27632778
const auto time_3{SteadyClock::now()};
27642779
m_chainman.time_connect += time_3 - time_2;
27652780
LogDebug(BCLog::BENCH, " - Connect %u transactions: %.2fms (%.3fms/tx, %.3fms/txin) [%.2fs (%.2fms/blk)]\n", (unsigned)block.vtx.size(),

0 commit comments

Comments
 (0)