Skip to content

Commit

Permalink
added comments to config.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
urza authored Jan 19, 2019
1 parent a45a6b5 commit 9a77012
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions src/Master/config.xml
Original file line number Diff line number Diff line change
@@ -1,30 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<Config>
<!-- Primary connection to POOL or your own grin node,
make sure you understand your pool's "password" field policy -->
<PrimaryConnection>
<ConnectionAddress>POOLADDRESS</ConnectionAddress>
<ConnectionPort>13416</ConnectionPort>
<Ssl>false</Ssl>
<ConnectionPort>4416</ConnectionPort>
<Ssl>true</Ssl>
<Login>userlogin</Login>
<Password>secretpwd</Password>
</PrimaryConnection>

<!-- Backup connection to POOL or your own grin node.
When primary connection is down this is used.
Reconnection chooses randomly between primary and secondary until
succesfull connection is established -->
<SecondaryConnection>
<ConnectionAddress>POOLADDRESS</ConnectionAddress>
<ConnectionPort>13416</ConnectionPort>
<ConnectionPort>3416</ConnectionPort>
<Ssl>false</Ssl>
<Login>userlogin</Login>
<Password>secretpwd</Password>
<Password></Password>
</SecondaryConnection>

<LogOptions>
<!-- set true if you dont want any logs written on disk -->
<DisableLogging>false</DisableLogging>
<!-- DEBUG, INFO, WARNING, ERROR, ..DEBUG will slow down mining -->
<FileMinimumLogLevel>ERROR</FileMinimumLogLevel>
<ConsoleMinimumLogLevel>ERROR</ConsoleMinimumLogLevel>
<!-- logs that are older than this (in days) will be deleted -->
<KeepDays>2</KeepDays>
</LogOptions>

<!-- integer value between 10 and 90 for Rigs with very slow processors -->
<CPUOffloadValue>
0
</CPUOffloadValue>

<GPUOptions>
<GPUOption>
<GPUType>NVIDIA</GPUType>
Expand All @@ -33,4 +45,4 @@
<Enabled>false</Enabled>
</GPUOption>
</GPUOptions>
</Config>
</Config>

0 comments on commit 9a77012

Please sign in to comment.