1
0

qml: use new wizard approach in qml and also implement 2FA/trustedcoin

This commit is contained in:
Sander van Grieken
2022-09-22 12:43:51 +02:00
parent a4195267ff
commit 43bac2edff
22 changed files with 874 additions and 217 deletions

View File

@@ -304,6 +304,10 @@ class QEWallet(AuthMixin, QObject, QtEventListener):
def canHaveLightning(self):
return self.wallet.can_have_lightning()
@pyqtProperty(str, notify=dataChanged)
def walletType(self):
return self.wallet.wallet_type
@pyqtProperty(bool, notify=dataChanged)
def hasSeed(self):
return self.wallet.has_seed()