From 1a39aab227479dda97001e41c8a7f4249dbdb125 Mon Sep 17 00:00:00 2001 From: Jan Willem Penterman Date: Wed, 26 Aug 2015 17:01:16 +0200 Subject: [PATCH] - intro txt --- ethminer/MinerAux.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ethminer/MinerAux.h b/ethminer/MinerAux.h index 8589f52d4..58b81d515 100644 --- a/ethminer/MinerAux.h +++ b/ethminer/MinerAux.h @@ -245,8 +245,18 @@ public: m_minerType = MinerType::CPU; else if (arg == "-G" || arg == "--opencl") m_minerType = MinerType::GPU; - else if (arg == "-U" || arg == "--cuda") + else if (arg == "-U" || arg == "--cuda") { m_minerType = MinerType::CUDA; + + cout << "Genoil's CUDA ethminer" << endl; + cout << "=====================================================================" << endl; + cout << "Forked from github.com/ethereum/cpp-ethereum" << endl; + cout << "Ported from tim hughes' OpenCL kernel" << endl; + cout << "With contributions from tpruvot and sp_ " << endl << endl; + cout << "Please consider donating a tiny fraction of the extra performance to:" << endl; + cout << "ETH: 0xb9310b185455f863f526dab3d245809f6854b4d" << endl; + cout << "BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW" << endl << endl; + } else if (arg == "--current-block" && i + 1 < argc) m_currentBlock = stol(argv[++i]); else if (arg == "--no-precompute")