1
0

wizard: fix missing 'wallet_password' and 'wallet_password_hardware' views on abstract KeystoreWizard

(these were implicitly defined by the Qt subclass) and test wallet keystore enable.
This commit is contained in:
Sander van Grieken
2025-08-13 16:16:00 +02:00
parent 0a2cd5fdad
commit e1d5d803e9
2 changed files with 20 additions and 4 deletions

View File

@@ -226,6 +226,12 @@ class KeystoreWizard(AbstractWizard):
'choose_hardware_device': {
'next': self.on_hardware_device,
},
'wallet_password': {
'last': True
},
'wallet_password_hardware': {
'last': True
},
}
def maybe_master_pubkey(self, wizard_data):