diff options
author | psychocrypt <psychocryptHPC@gmail.com> | 2018-04-02 20:59:58 +0200 |
---|---|---|
committer | psychocrypt <psychocryptHPC@gmail.com> | 2018-04-02 20:59:58 +0200 |
commit | 5491cf018a5004de948392e549c2ae076a23b520 (patch) | |
tree | 988209d99c2e2c6e6fe8be0a469169648e788363 /xmrstak/jconf.hpp | |
parent | acfc159cf022aa9febcd18b11256488f54907761 (diff) | |
download | xmr-stak-5491cf018a5004de948392e549c2ae076a23b520.zip xmr-stak-5491cf018a5004de948392e549c2ae076a23b520.tar.gz |
change `height` to `version`
-rename `mining_fork_height` to `*_version`
Diffstat (limited to 'xmrstak/jconf.hpp')
-rw-r--r-- | xmrstak/jconf.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmrstak/jconf.hpp b/xmrstak/jconf.hpp index 336e4be..76b93dd 100644 --- a/xmrstak/jconf.hpp +++ b/xmrstak/jconf.hpp @@ -52,7 +52,7 @@ public: inline xmrstak_algo GetMiningAlgoRoot() const { return mining_algo_root; } - inline uint8_t GetMiningForkHeight() const { return mining_fork_height; } + inline uint8_t GetMiningForkVersion() const { return mining_fork_version; } std::string GetMiningCoin(); @@ -96,5 +96,5 @@ private: bool bHaveAes; xmrstak_algo mining_algo; xmrstak_algo mining_algo_root; - uint8_t mining_fork_height; + uint8_t mining_fork_version; }; |