Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XDAG] Dagger - New Community-based Cryptocurrency - First Mineable DAG !
by
jonano
on 17/05/2018, 23:36:26 UTC
For pool owners: configuration for pool was updated. A new parameter "maxconn - maximum allowed number of miners with the same address" was added. Also parameters were reordered
Code:
  -P ip:port:CFG - run the pool, bind to ip:port, CFG is miners:maxip:maxconn:fee:reward:direct:fund
                     miners - maximum allowed number of miners,
                     maxip - maximum allowed number of miners connected from single ip,
                     maxconn - maximum allowed number of miners with the same address,
                     fee - pool fee in percent,
                     reward - reward to miner who got a block in percent,
                     direct - reward to miners participated in earned block in percent,
                     fund - community fund fee in percent

Example of command line for starting pool (for test net):
Quote
xdag -t -p 213.21.5.18:3366 -P 213.21.5.18:454:1000:100:60:1:1:1:1

Output of miners command was changed. Example:
Code:
xdag> miners
List of miners:
 NN  Address for payment to            Status   IP and port            in/out bytes      nopaid shares
------------------------------------------------------------------------------------------------------
 -1. EacdO89D9vDursfUP4dsPHvHu1mnKdHP  fee      -                      -                 0.000000
  0. XUSGrE0EHNLZ1OMZqv7pvbBa4YRA+zKp  active   -                      -                 34.238053
 C1. -                                 -        127.0.0.1:50013        9568/4800         34.238053
 C2. -                                 -        127.0.0.1:50634        576/96            0.135454
  1. CtuR8NizlQHSb09T8fV3bURYCEmQ/jcN  active   -                      -                 31.848017
 C1. -                                 -        127.0.0.1:50024        10944/4640        31.848017
  2. qJ4ytVsbjyiuDP57XaLo1ia323XeHFS8  archive  -                      -                 13.180378
------------------------------------------------------------------------------------------------------
Total 2 active miners.
Now all connections with the same address are grouped. Disconnected miners are marked with "archived" state. Archive miners are removed from the list when all shares are payed.
In order to see the list in the old format, you can use command "miners conn"
Code:
xdag> miners conn
List of miners:
 NN  Address for payment to            Status   IP and port            in/out bytes      nopaid shares
------------------------------------------------------------------------------------------------------
  0. XUSGrE0EHNLZ1OMZqv7pvbBa4YRA+zKp  active   127.0.0.1:50013        9600/4800         34.238053
  1. CtuR8NizlQHSb09T8fV3bURYCEmQ/jcN  active   127.0.0.1:50024        10976/4640        31.848017
  2. XUSGrE0EHNLZ1OMZqv7pvbBa4YRA+zKp  active   127.0.0.1:50634        576/96            0.135454
------------------------------------------------------------------------------------------------------
Total 3 active miners.
But this list shows only active connections. The new version no longer has "archive connectios".