Skip to content

Commit

Permalink
Update redis.go solo first
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriy0803 committed Apr 15, 2024
1 parent f4d5d4e commit 039bd41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -1938,8 +1938,8 @@ func (r *RedisClient) GetMiningType(login string) string {
cmd := r.client.HGet(r.formatKey("settings", login), "miningType")
//log.Println("MINING TYPE for : ", login)
if cmd.Err() == redis.Nil {
// log.Println("MINING TYPE RETURN pplns")
return "pplns"
// log.Println("MINING TYPE RETURN solo")
return "solo"
} else if cmd.Err() != nil {
//log.Println("MINING TYPE RETURN NA")
return "NA"
Expand Down

0 comments on commit 039bd41

Please sign in to comment.