mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
fix BlitzTUI
This commit is contained in:
parent
f2c16a91b5
commit
0975993592
2 changed files with 3 additions and 2 deletions
|
@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
## [Unreleased]
|
||||
|
||||
- remove line break for longer TORv3 NodeURI
|
||||
|
||||
- fix cfg_check
|
||||
|
||||
## [0.42.0] - 2019-12-25
|
||||
### Added
|
||||
|
|
|
@ -189,7 +189,7 @@ class AppWindow(QMainWindow):
|
|||
self.rb_cfg = RaspiBlitzConfig(rb_cfg_abs_path)
|
||||
try:
|
||||
self.rb_cfg.reload()
|
||||
lnd_cfg_valid = True
|
||||
rb_cfg_valid = True
|
||||
except Exception as err:
|
||||
pass
|
||||
|
||||
|
@ -202,6 +202,7 @@ class AppWindow(QMainWindow):
|
|||
pass
|
||||
|
||||
self.cfg_valid = lnd_cfg_valid and rb_cfg_valid and rb_info_valid
|
||||
log.debug("checked cfg_valid with result: {}".format(self.cfg_valid))
|
||||
|
||||
def check_invoice(self, flag, tick=0):
|
||||
log.info("checking invoice paid (Tick: {})".format(tick))
|
||||
|
|
Loading…
Add table
Reference in a new issue