diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-05 16:28:15 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-05 16:30:16 +0000 |
commit | cbf3224180380d7ff2b4fc28b3800486f22a1cc7 (patch) | |
tree | 9f2d6b4de0d6e2dc3e2e30c4472fe1d19d97a4ed /src/cryptonote_basic/difficulty.h | |
parent | Merge pull request #5390 (diff) | |
download | monero-cbf3224180380d7ff2b4fc28b3800486f22a1cc7.tar.xz |
rpc: make wide_difficulty hexadecimal
This should be friendlier for clients which don't have bignum support
Diffstat (limited to 'src/cryptonote_basic/difficulty.h')
-rw-r--r-- | src/cryptonote_basic/difficulty.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptonote_basic/difficulty.h b/src/cryptonote_basic/difficulty.h index f7a9376fb..02ed89e5a 100644 --- a/src/cryptonote_basic/difficulty.h +++ b/src/cryptonote_basic/difficulty.h @@ -32,6 +32,7 @@ #include <cstdint> #include <vector> +#include <string> #include <boost/multiprecision/cpp_int.hpp> #include "crypto/hash.h" @@ -58,4 +59,6 @@ namespace cryptonote bool check_hash_128(const crypto::hash &hash, difficulty_type difficulty); 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); + + std::string hex(difficulty_type v); } |