Skip to content

Commit

Permalink
Nchain needs Focal.
Browse files Browse the repository at this point in the history
  • Loading branch information
guydavis committed Aug 9, 2022
1 parent 56e497c commit 8b88878
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop-nchain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
platforms: linux/amd64
push: true
build-args: |
"UBUNTU_VER=jammy"
"UBUNTU_VER=focal"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"NCHAIN_BRANCH=net9.dev"
Expand Down
4 changes: 2 additions & 2 deletions api/schedules/plots_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ def request_check(plot, workers):
if response.status_code == 200:
return [harvester.hostname, harvester.displayname, response.content.decode('utf-8')]
elif response.status_code == 404:
app.logger.debug("Plotter on {0}:{1} did not have plot check for {2}".format(
app.logger.debug("Harvester on {0}:{1} did not have plot check for {2}".format(
harvester.hostname, harvester.port, plot.file))
else:
app.logger.info("Plotter on {0}:{1} returned an unexpected error: {2}".format(
app.logger.info("Harvester on {0}:{1} returned an unexpected error: {2}".format(
harvester.hostname, harvester.port, response.status_code))
except Exception as ex:
app.logger.info(str(ex))
Expand Down
1 change: 0 additions & 1 deletion web/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ def wallet():
app.logger.info("Saving {0} cold wallet address of: {1}".format(request.form.get('blockchain'), request.form.get('cold_wallet_address')))
selected_blockchain = request.form.get('blockchain')
chia.save_cold_wallet_addresses(request.form.get('blockchain'), request.form.get('cold_wallet_address'))
flash(_("Saved cold wallet addresses."), 'success')
wallets = chia.load_wallets()
chart_data = stats.load_total_balances(fiat.get_local_currency_symbol().lower())
return render_template('wallet.html', wallets=wallets, global_config=gc, selected_blockchain = selected_blockchain,
Expand Down

0 comments on commit 8b88878

Please sign in to comment.