diff options
Diffstat (limited to 'src/pow.cpp')
-rw-r--r-- | src/pow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pow.cpp b/src/pow.cpp index d50d0cfeef..bbcf39b593 100644 --- a/src/pow.cpp +++ b/src/pow.cpp @@ -136,7 +136,7 @@ bool PermittedDifficultyTransition(const Consensus::Params& params, int64_t heig } // Bypasses the actual proof of work check during fuzz testing with a simplified validation checking whether -// the most signficant bit of the last byte of the hash is set. +// the most significant bit of the last byte of the hash is set. bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params& params) { if constexpr (G_FUZZING) return (hash.data()[31] & 0x80) == 0; |