@@ -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;
@@ -2758,19 +2760,21 @@ bool Chainstate::ConnectBlock(const CBlock& block, BlockValidationState& state,
2758
2760
UpdateCoins (tx, view, i == 0 ? undoDummy : blockundo.vtxundo .back (), pindex->nHeight );
2759
2761
} else {
2760
2762
UpdateCoinsIBDBooster (tx, view, pindex->nHeight );
2761
- if (pindex->nHeight == g_ibd_booster_hints.GetFinalBlockHeight ()) {
2762
- if (g_ibd_booster_muhash.IsEmptySet ()) {
2763
- LogInfo (" *** IBD Booster: MuHash check at block height %d succeeded. ***\n " , pindex->nHeight );
2764
- } else {
2765
- // TODO: find a proper way to signal this error; strictly speaking it's not a
2766
- // block validation error, most likely the given hints data file was invalid
2767
- state.Invalid (BlockValidationResult::BLOCK_CONSENSUS, " ibd-booster-muhash-not-empty-at-final-block" ,
2768
- " fails the IBD-Booster-MuHash check (should be an empty set!)" );
2769
- break ;
2770
- }
2771
- }
2772
2763
}
2773
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
+
2774
2778
const auto time_3{SteadyClock::now ()};
2775
2779
m_chainman.time_connect += time_3 - time_2;
2776
2780
LogDebug (BCLog::BENCH, " - Connect %u transactions: %.2fms (%.3fms/tx, %.3fms/txin) [%.2fs (%.2fms/blk)]\n " , (unsigned )block.vtx .size (),
0 commit comments