Skip to content

Commit

Permalink
Handle Gigahorse as a pool config (Chia actually)
Browse files Browse the repository at this point in the history
  • Loading branch information
guydavis committed Aug 21, 2023
1 parent dfafe3a commit 691a5a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/schedules/status_pools.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def update():
blockchain_rpc = rpc.RPC()
try:
for blockchain in globals.enabled_blockchains():
if not blockchain in ['chia', 'chives']:
if not blockchain in p.POOLABLE_BLOCKCHAINS:
continue
payload = []
hostname = utils.get_hostname()
Expand Down
2 changes: 1 addition & 1 deletion web/models/pools.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class PoolConfigs():

def __init__(self, blockchain, plotnfts, wallets):
self.plotnfts = plotnfts
if blockchain == 'chia':
if blockchain in ['chia', 'gigahorse']:
self.links = self.chia_links()
elif blockchain == 'chives':
self.links = self.chives_links()
Expand Down

0 comments on commit 691a5a5

Please sign in to comment.