Skip to content

Commit

Permalink
bug: fix pool URL for vnish parser
Browse files Browse the repository at this point in the history
  • Loading branch information
UpstreamData committed Dec 2, 2024
1 parent 29c2398 commit 3f9f232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyasic/config/pools.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def from_bosminer(cls, toml_pool_conf: dict) -> "Pool":
@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"],
)
Expand Down

0 comments on commit 3f9f232

Please sign in to comment.