Fixed isTLS method.

This commit is contained in:
XMRig 2019-11-20 15:36:02 +07:00
parent 8102526abc
commit 5d559971ca

View file

@ -72,7 +72,7 @@ public:
);
inline bool isNicehash() const { return m_flags.test(FLAG_NICEHASH); }
inline bool isTLS() const { return m_flags.test(FLAG_TLS); }
inline bool isTLS() const { return m_flags.test(FLAG_TLS) || m_url.isTLS(); }
inline bool isValid() const { return m_url.isValid(); }
inline const Algorithm &algorithm() const { return m_algorithm; }
inline const Coin &coin() const { return m_coin; }