From 039bd41548707fc833aff99c42c37c912d8b3b44 Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Mon, 15 Apr 2024 20:53:53 +0200 Subject: [PATCH] Update redis.go solo first --- storage/redis.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/redis.go b/storage/redis.go index cd4ca42..4cc0e7c 100644 --- a/storage/redis.go +++ b/storage/redis.go @@ -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"