Add more info on custom configs

This commit is contained in:
Taylor Helsper 2020-07-13 22:45:26 -05:00
parent 969107859b
commit cb15c52b01
3 changed files with 6 additions and 0 deletions

View File

@ -265,6 +265,7 @@ def bitcoind_config_page():
templateData = {
"title": "myNode Bitcoin Config",
"using_bitcoin_custom_config": using_bitcoin_custom_config(),
"bitcoin_config": bitcoin_config,
"ui_settings": read_ui_settings()
}

View File

@ -442,6 +442,7 @@ def lnd_config_page():
templateData = {
"title": "myNode LND Config",
"using_lnd_custom_config": using_lnd_custom_config(),
"lnd_config": lnd_config,
"ui_settings": read_ui_settings()
}

View File

@ -2,6 +2,8 @@ from config import *
from flask import Blueprint, render_template, session, abort, Markup, request, redirect, send_from_directory, url_for, flash
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from bitcoind import is_bitcoind_synced
from bitcoin_info import using_bitcoin_custom_config
from lightning_info import using_lnd_custom_config
from pprint import pprint, pformat
from threading import Timer
from thread_functions import *
@ -138,6 +140,8 @@ def page_settings():
"product_key_skipped": pk_skipped,
"product_key_error": pk_error,
"changelog": changelog,
"using_bitcoin_custom_config": using_bitcoin_custom_config(),
"using_lnd_custom_config": using_lnd_custom_config(),
"is_bitcoin_synced": is_bitcoind_synced(),
"is_installing_docker_images": is_installing_docker_images(),
"firewall_rules": get_firewall_rules(),