diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-10-07 22:28:43 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2016-03-24 03:39:52 -0400 |
commit | 8ac329df0294f16efbc48a2785eda165878d3511 (patch) | |
tree | 6529e23da88cf72f22a7380af1db9fd02dd66f41 /src/cryptonote_core/difficulty.h | |
parent | Move checkpoint functions into checkpoints class (diff) | |
download | monero-8ac329df0294f16efbc48a2785eda165878d3511.tar.xz |
doxygen documentation for difficulty functions
Diffstat (limited to '')
-rw-r--r-- | src/cryptonote_core/difficulty.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cryptonote_core/difficulty.h b/src/cryptonote_core/difficulty.h index d49c2f3b8..910f97035 100644 --- a/src/cryptonote_core/difficulty.h +++ b/src/cryptonote_core/difficulty.h @@ -39,6 +39,18 @@ namespace cryptonote { typedef std::uint64_t difficulty_type; + /** + * @brief checks if a hash fits the given difficulty + * + * The hash passes if (hash * difficulty) < 2^192. + * Phrased differently, if (hash * difficulty) fits without overflow into + * the least significant 192 bits of the 256 bit multiplication result. + * + * @param hash the hash to check + * @param difficulty the difficulty to check against + * + * @return true if valid, else false + */ bool check_hash(const crypto::hash &hash, difficulty_type difficulty); difficulty_type next_difficulty(std::vector<std::uint64_t> timestamps, std::vector<difficulty_type> cumulative_difficulties, size_t target_seconds); } |