aionnetwork / aion_pool2

aion pool implementation with c# core.
13 stars 15 forks source link

The individual miner stats #8

Closed Knevil closed 5 years ago

Knevil commented 6 years ago

The individual miner stats are not working when miners name their rigs.

Knevil commented 6 years ago

even if they remove the rig name, it stays broken, they would need to use a new wallet address

Tifonous commented 5 years ago

When someone is using a worker name, I am getting the same issue. The only workaround so far is to do the following steps: 1.Get everyone to use 1 wallet address per worker 2.Get into postgres by typing sudo -u postgres psql 3.Type \c miningcore 4.Type update shares set worker='' where miner='mineraddresshere'; 5.Type update minerstats set worker='' where miner='mineraddresshere';

This will correct the problem for existing addresses.

Of course this does not solve the initial problem and a fix is needed.