Skip to content

Commit

Permalink
Correct flex algo hashrate calc
Browse files Browse the repository at this point in the history
  • Loading branch information
MoneroOcean committed May 30, 2024
1 parent a7ebb05 commit 3d8bf10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/crypto/Algorithm.h
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class Algorithm
inline size_t l2() const { return l2(m_id); }
inline uint32_t family() const { return family(m_id); }
inline uint32_t minIntensity() const { return ((m_id == GHOSTRIDER_RTM) ? 8 : 1); };
inline uint32_t maxIntensity() const { return isCN() ? 5 : ((family(m_id) == GHOSTRIDER) ? 8 : 1); };
inline uint32_t maxIntensity() const { return isCN() ? 5 : ((m_id == GHOSTRIDER_RTM) ? 8 : 1); };

inline size_t l3() const { return l3(m_id); }

Expand Down

0 comments on commit 3d8bf10

Please sign in to comment.