#459 Fix issue with xmr.f2pool.com
This commit is contained in:
parent
38c39321d0
commit
de5016dda8
4 changed files with 32 additions and 10 deletions
|
@ -210,3 +210,9 @@ bool Job::operator==(const Job &other) const
|
|||
{
|
||||
return m_id == other.m_id && memcmp(m_blob, other.m_blob, sizeof(m_blob)) == 0;
|
||||
}
|
||||
|
||||
|
||||
bool Job::operator!=(const Job &other) const
|
||||
{
|
||||
return m_id != other.m_id || memcmp(m_blob, other.m_blob, sizeof(m_blob)) != 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue