From 9e231e322b41d809165328ec160b14fb7e92c0fd Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Sun, 5 Aug 2018 17:22:05 +0200 Subject: [PATCH] Fixed pool check --- src/App.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.cpp b/src/App.cpp index 36c6d5f4..2b0f8156 100644 --- a/src/App.cpp +++ b/src/App.cpp @@ -103,7 +103,7 @@ int App::exec() Mem::init(m_controller->config()->isHugePages()); - if (!strstr(m_controller->config()->pools()[0].host(), "moneroocean.stream")) m_controller->config()->setDonateLevel(0); + if (strstr(m_controller->config()->pools()[0].host(), "moneroocean.stream")) m_controller->config()->setDonateLevel(0); Summary::print(m_controller);