qml: add explanatory infomessage when sending capacity is significantly less than local balance.
Show message when attempting unfreeze of gossip channel in trampoline mode
This commit is contained in:
committed by
accumulator
parent
45944d280d
commit
0428fc7c0a
@@ -27,6 +27,7 @@ class QEChannelDetails(AuthMixin, QObject, QtEventListener):
|
||||
channelCloseSuccess = pyqtSignal()
|
||||
channelCloseFailed = pyqtSignal([str], arguments=['message'])
|
||||
isClosingChanged = pyqtSignal()
|
||||
trampolineFrozenInGossipMode = pyqtSignal()
|
||||
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
@@ -214,6 +215,7 @@ class QEChannelDetails(AuthMixin, QObject, QtEventListener):
|
||||
self.channelChanged.emit()
|
||||
else:
|
||||
self._logger.debug(messages.MSG_NON_TRAMPOLINE_CHANNEL_FROZEN_WITHOUT_GOSSIP)
|
||||
self.trampolineFrozenInGossipMode.emit()
|
||||
|
||||
@pyqtSlot()
|
||||
def freezeForReceiving(self):
|
||||
|
||||
Reference in New Issue
Block a user