Fixed coin option in daemon mode.

This commit is contained in:
XMRig 2019-09-27 23:39:57 +07:00
parent e1d1a5226c
commit 550e332909
2 changed files with 6 additions and 2 deletions

View file

@ -174,7 +174,7 @@ bool xmrig::Pool::isEnabled() const
}
# endif
if (isDaemon() && !algorithm().isValid()) {
if (isDaemon() && (!algorithm().isValid() && !coin().isValid())) {
return false;
}