Skip to content

Commit

Permalink
Emergency build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmacleod committed Aug 28, 2023
1 parent 099afa2 commit 0baf50f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/validation/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -918,6 +918,11 @@ void LogWitnessInfo(CGetWitnessInfo witInfo)
bool ConnectBlock(CChain& chain, const CBlock& block, CValidationState& state, CBlockIndex* pindex,
CCoinsViewCache& view, const CChainParams& chainparams, bool fJustCheck, bool fVerifyWitness, bool fVerifyWitnessDelta, bool fDoScriptChecks)
{
//Force disable witness delta for now
if (fVerifyWitnessDelta)
fVerifyWitness = true;
fVerifyWitnessDelta = false;

if (!ContextualCheckBlock(block, state, chainparams, pindex->pprev, chain, &view, true))
return error("%s: Consensus::CheckBlock, failed ContextualCheckBlock with utxo check: %s", __func__, FormatStateMessage(state));

Expand Down

0 comments on commit 0baf50f

Please sign in to comment.