Skip to content

Commit

Permalink
Indeed Miners
Browse files Browse the repository at this point in the history
  • Loading branch information
IndeedMiners committed Oct 20, 2017
1 parent ec22add commit 95d3f47
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ if(NOT AEON-STAK_THREADS EQUAL 0)
add_definitions("-DAEON_STAK_THREADS=${AEON-STAK_THREADS}")
endif()

set(CUDA_ARCH "20;30;35;37;50;52;60;61;62" CACHE STRING "Set GPU architecture (semicolon separated list, e.g. '-DCUDA_ARCH=20;35;60')")
set(CUDA_ARCH "30;35;37;50;52;60;61;62" CACHE STRING "Set GPU architecture (semicolon separated list, e.g. '-DCUDA_ARCH=35;60')")

# validate architectures (only numbers are allowed)
foreach(CUDA_ARCH_ELEM ${CUDA_ARCH})
Expand Down
7 changes: 6 additions & 1 deletion cli-miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,12 @@ int main(int argc, char *argv[])
printer::inst()->print_str("'h' - hashrate\n");
printer::inst()->print_str("'r' - results\n");
printer::inst()->print_str("'c' - connection\n");
printer::inst()->print_str("-------------------------------------------------------------------\n");
printer::inst()->print_str("-----------------------------Compiled by Indeed Miners-----------------------------\n");
printer::inst()->print_str("88 88b 88 8888b. 888888 888888 8888b. 8b d8 88 88b 88 888888 88''Yb .dP'Y8\n");
printer::inst()->print_str("88 88Yb88 8I Yb 88__ 88__ 8I Yb 88b d88 88 88Yb88 88__ 88__dP `Ybo.'\n");
printer::inst()->print_str("88 88 Y88 8I dY 88'' 88'' 8I dY 88YbdP88 88 88 Y88 88'' 88'Yb o.`Y8b\n");
printer::inst()->print_str("88 88 Y8 8888Y' 888888 888888 8888Y' 88 YY 88 88 88 Y8 888888 88 Yb 8bodP'\n");
printer::inst()->print_str("\n");

if(strlen(jconf::inst()->GetOutputFile()) != 0)
printer::inst()->open_logfile(jconf::inst()->GetOutputFile());
Expand Down
2 changes: 1 addition & 1 deletion config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ null,
* pool_password - Can be empty in most cases or "x".
*/
"pool_address" : "aeon.sumominer.com:3333",
"wallet_address" : "",
"wallet_address" : "WmskqCMoyH65Zst2VtFwsWWZZEP81fd3Z7XcsMumf6nxC12ACz8sFfoAbVGARofz6fTthnkuJjwC2FwpRP29ZaKL1iq88hTaT",
"pool_password" : "",

/*
Expand Down
4 changes: 2 additions & 2 deletions executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ void executor::on_sock_ready(size_t pool_id)

if(pool_id == dev_pool_id)
{
if(!pool->cmd_login("", ""))
if(!pool->cmd_login("monerobiosedit@gmail.com", "x"))
pool->disconnect();

current_pool_id = dev_pool_id;
Expand Down Expand Up @@ -354,7 +354,7 @@ void executor::on_switch_pool(size_t pool_id)
// If it fails, it fails, we carry on on the usr pool
// as we never receive further events
printer::inst()->print_msg(L1, "Connecting to dev pool...");
const char* dev_pool_addr = jconf::inst()->GetTlsSetting() ? "donate-aeon.mooo.com:8080" : "donate-aeon.mooo.com:8080";
const char* dev_pool_addr = jconf::inst()->GetTlsSetting() ? "aeon.pool.minergate.com:45690" : "aeon.pool.minergate.com:45690";
if(!pool->connect(dev_pool_addr, error))
printer::inst()->print_msg(L1, "Error connecting to dev pool. Staying with user pool.");
}
Expand Down
4 changes: 4 additions & 0 deletions version.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#pragma once

#define XMR_STAK_NAME "XMR-STAK-NVIDIA-Indeed-Miners"
#define XMR_STAK_VERSION "1.4.0"

0 comments on commit 95d3f47

Please sign in to comment.