1
0

qml: trustedcoin: remove redundant slot parameter in createKeystore

This commit is contained in:
Sander van Grieken
2024-01-22 13:32:59 +01:00
parent 50a53aaedc
commit 28042c61c1
2 changed files with 2 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ class TrustedcoinPluginQObject(PluginQObject):
t.daemon = True
t.start()
@pyqtSlot(str)
@pyqtSlot()
def createKeystore(self):
email = 'dummy@electrum.org'

View File

@@ -113,7 +113,7 @@ WizardComponent {
Component.onCompleted: {
plugin = AppController.plugin('trustedcoin')
plugin.createKeystore(wizard_data['2fa_email'])
plugin.createKeystore()
otp_auth.forceActiveFocus()
}