1
0

qml: enable first wizard page of multisig

This commit is contained in:
Sander van Grieken
2022-11-07 14:07:00 +01:00
parent 5fd8b63091
commit b8a8c848c7
5 changed files with 108 additions and 1 deletions

View File

@@ -163,6 +163,9 @@ class NewWalletWizard(AbstractWizard):
'next': 'wallet_password',
'last': self.last_if_single_password
},
'multisig': {
'next': 'first_cosigner'
},
'imported': {
'next': 'wallet_password',
'last': self.last_if_single_password
@@ -189,6 +192,7 @@ class NewWalletWizard(AbstractWizard):
return {
'standard': 'keystore_type',
'2fa': 'trustedcoin_start',
'multisig': 'multisig',
'imported': 'imported'
}.get(t)