bug: fix pool URL for vnish parser

This commit is contained in:
Upstream Data
2024-12-02 10:30:57 -07:00
parent 29c2398846
commit 3f9f232990

View File

@@ -201,7 +201,7 @@ class Pool(MinerConfigValue):
@classmethod
def from_vnish(cls, web_pool: dict) -> "Pool":
return cls(
url=web_pool["url"],
url="stratum+tcp://" + web_pool["url"],
user=web_pool["user"],
password=web_pool["pass"],
)