Merge 372dd8da24 into merged_master (Bitcoin PR #21110)

This commit is contained in:
Andrew Poelstra 2021-06-24 02:09:12 +00:00
commit 993a3aa40e
4 changed files with 63 additions and 9 deletions

View file

@ -826,6 +826,10 @@ static bool InitSanityCheck()
return InitError(Untranslated("OS cryptographic RNG sanity check failure. Aborting."));
}
if (!ChronoSanityCheck()) {
return InitError(Untranslated("Clock epoch mismatch. Aborting."));
}
return true;
}