1
0

Merge pull request #10295 from SomberNight/202510_proto16

electrum protocol: add support for 1.6, but keep supporting 1.4
This commit is contained in:
ghost43
2025-11-07 16:42:11 +00:00
committed by GitHub
5 changed files with 98 additions and 22 deletions

View File

@@ -546,7 +546,7 @@ class ElectrumQmlApplication(QGuiApplication):
self.context.setContextProperty('QRIP', self.qr_ip_h)
self.context.setContextProperty('BUILD', {
'electrum_version': version.ELECTRUM_VERSION,
'protocol_version': version.PROTOCOL_VERSION,
'protocol_version': f"[{version.PROTOCOL_VERSION_MIN}, {version.PROTOCOL_VERSION_MAX}]",
'qt_version': QT_VERSION_STR,
'pyqt_version': PYQT_VERSION_STR
})