mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-12 08:29:16 +00:00
Add more info on custom configs
This commit is contained in:
parent
969107859b
commit
cb15c52b01
|
@ -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()
|
||||
}
|
||||
|
|
|
@ -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()
|
||||
}
|
||||
|
|
|
@ -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(),
|
||||
|
|
Loading…
Reference in New Issue
Block a user