trustedcoin: fix two-step wallet creation (offline->online)
got broken in c46fbf08a5
This commit is contained in:
@@ -44,7 +44,7 @@ from electrum.i18n import _
|
|||||||
from electrum.plugin import hook
|
from electrum.plugin import hook
|
||||||
from electrum.util import is_valid_email
|
from electrum.util import is_valid_email
|
||||||
from electrum.logging import Logger
|
from electrum.logging import Logger
|
||||||
from electrum.base_wizard import GoBack
|
from electrum.base_wizard import GoBack, UserCancelled
|
||||||
|
|
||||||
from .trustedcoin import TrustedCoinPlugin, server
|
from .trustedcoin import TrustedCoinPlugin, server
|
||||||
|
|
||||||
@@ -229,7 +229,7 @@ class Plugin(TrustedCoinPlugin):
|
|||||||
wizard.reset_stack()
|
wizard.reset_stack()
|
||||||
try:
|
try:
|
||||||
wizard.confirm_dialog(title='', message=msg, run_next = lambda x: wizard.run('accept_terms_of_use'))
|
wizard.confirm_dialog(title='', message=msg, run_next = lambda x: wizard.run('accept_terms_of_use'))
|
||||||
except GoBack:
|
except (GoBack, UserCancelled):
|
||||||
# user clicked 'Cancel' and decided to move wallet file manually
|
# user clicked 'Cancel' and decided to move wallet file manually
|
||||||
storage, db = wizard.create_storage(wizard.path)
|
storage, db = wizard.create_storage(wizard.path)
|
||||||
raise
|
raise
|
||||||
|
|||||||
Reference in New Issue
Block a user