From b71d296a5d2bb1d8e114e29687f3c5a25c127b53 Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Tue, 10 Dec 2019 22:34:46 -0600 Subject: [PATCH] Fix bitcoin config reset 500 error --- rootfs/standard/var/www/mynode/bitcoind.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rootfs/standard/var/www/mynode/bitcoind.py b/rootfs/standard/var/www/mynode/bitcoind.py index 1acd75f8..e5af85f1 100644 --- a/rootfs/standard/var/www/mynode/bitcoind.py +++ b/rootfs/standard/var/www/mynode/bitcoind.py @@ -194,7 +194,8 @@ def bitcoin_reset_config_page(): templateData = { "title": "myNode Reboot", "header_text": "Restarting", - "subheader_text": "This will take several minutes..." + "subheader_text": "This will take several minutes...", + "ui_settings": read_ui_settings() } return render_template('reboot.html', **templateData)