@ -580,16 +571,14 @@ class NewWalletUX(UXStateMachine):
# receive address from the wallet.
# receive address from the wallet.
ifself.is_multisig():
ifself.is_multisig():
# Only perform multisig import if wallet does not prevent it
# Only perform multisig import if wallet does not prevent it
ifself.is_skip_multisig_import_enabled():
ifself.is_skip_multisig_import_enabled()==False:
continue
else:
self.choose_multisig_import_mode()
self.choose_multisig_import_mode()
# Only perform address validation if wallet does not prevent it
# Only perform address validation if wallet does not prevent it
ifself.is_address_verification_skip_enabled():
ifself.is_skip_address_verifivation_enabled():
ifself.is_force_multisig_policy_enabled():
ifself.is_force_multisig_policy_enabled():
result=awaitux_show_story('For compatibility with {}, Passport will set your multisig policy to Skip Verification.\n{}'.format(self.sw_wallet['label']),
result=awaitux_show_story('For compatibility with {}, Passport will set your Multisig Policy to Skip Verification.\n'.format(self.sw_wallet['label']),
left_btn='NEXT',
left_btn='OK',
center=True,
center=True,
center_vertically=True)
center_vertically=True)
ifresult=='x':
ifresult=='x':
@ -657,16 +646,14 @@ class NewWalletUX(UXStateMachine):
# receive address from the wallet.
# receive address from the wallet.
ifself.is_multisig():
ifself.is_multisig():
# Only perform multisig import if wallet does not prevent it
# Only perform multisig import if wallet does not prevent it
ifself.is_skip_multisig_import_enabled():
ifself.is_skip_multisig_import_enabled()==False:
continue
else:
self.choose_multisig_import_mode()
self.choose_multisig_import_mode()
# Only perform address validation if wallet does not prevent it
# Only perform address validation if wallet does not prevent it
ifself.is_address_verification_skip_enabled():
ifself.is_skip_address_verifivation_enabled():
ifself.is_force_multisig_policy_enabled():
ifself.is_force_multisig_policy_enabled():
result=awaitux_show_story('For compatibility with {}, Passport will set your multisig policy to Skip Verification.\n{}'.format(self.sw_wallet['label']),
result=awaitux_show_story('For compatibility with {}, Passport will set your multisig policy to Skip Verification.\n'.format(self.sw_wallet['label']),
left_btn='NEXT',
left_btn='OK',
center=True,
center=True,
center_vertically=True)
center_vertically=True)
ifresult=='x':
ifresult=='x':
@ -914,7 +901,7 @@ Compare them with the addresses shown on the next screen to make sure they match
continue
continue
ifnotself.verified:
ifnotself.verified:
ifself.is_address_verification_skip_enabled():
ifself.is_skip_address_verifivation_enabled():
ifself.is_force_multisig_policy_enabled():
ifself.is_force_multisig_policy_enabled():
result=awaitux_show_story('For compatibility with {}, Passport will set your multisig policy to Skip Verification.\n{}'.format(self.sw_wallet['label']),
result=awaitux_show_story('For compatibility with {}, Passport will set your multisig policy to Skip Verification.\n{}'.format(self.sw_wallet['label']),