electrum-bitcoinprivate/gui/qt/installwizard.py

572 lines
18 KiB
Python
Raw Normal View History

from PyQt4.QtGui import *
from PyQt4.QtCore import *
import PyQt4.QtCore as QtCore
2013-09-11 04:55:49 -07:00
from electrum.i18n import _
from electrum import Wallet, Wallet_2of2, Wallet_2of3
2014-04-29 12:04:16 -07:00
import electrum.bitcoin as bitcoin
2013-08-29 07:07:55 -07:00
2014-04-19 11:23:27 -07:00
import seed_dialog
from network_dialog import NetworkDialog
2013-09-24 07:57:12 -07:00
from util import *
2013-08-29 07:07:55 -07:00
from amountedit import AmountEdit
import sys
2013-09-12 10:42:00 -07:00
import threading
2014-04-06 12:38:53 -07:00
from electrum.plugins import run_hook
2014-04-29 12:19:42 -07:00
MSG_ENTER_ANYTHING = _("Please enter a wallet seed, a master public key, a list of Bitcoin addresses, or a list of private keys")
2014-05-09 04:49:05 -07:00
MSG_SHOW_MPK = _("This is your master public key")
2014-04-29 12:19:42 -07:00
MSG_ENTER_MPK = _("Please enter your master public key")
2014-05-09 04:49:05 -07:00
MSG_ENTER_COLD_MPK = _("Please enter the master public key of your cosigning wallet")
2014-04-29 12:19:42 -07:00
MSG_ENTER_SEED_OR_MPK = _("Please enter a wallet seed, or master public key")
MSG_VERIFY_SEED = _("Your seed is important!") + "\n" + _("To make sure that you have properly saved your seed, please retype it here.")
class InstallWizard(QDialog):
2013-09-10 05:20:44 -07:00
def __init__(self, config, network, storage):
QDialog.__init__(self)
self.config = config
2013-09-10 05:20:44 -07:00
self.network = network
self.storage = storage
2013-09-12 10:42:00 -07:00
self.setMinimumSize(575, 400)
self.setWindowTitle('Electrum')
self.connect(self, QtCore.SIGNAL('accept'), self.accept)
2013-11-03 02:03:45 -08:00
self.stack = QStackedLayout()
self.setLayout(self.stack)
def set_layout(self, layout):
w = QWidget()
w.setLayout(layout)
self.stack.setCurrentIndex(self.stack.addWidget(w))
def restore_or_create(self):
2013-09-03 05:32:56 -07:00
2014-05-09 04:12:07 -07:00
vbox = QVBoxLayout()
main_label = QLabel(_("Electrum could not find an existing wallet."))
vbox.addWidget(main_label)
2013-09-03 05:32:56 -07:00
grid = QGridLayout()
grid.setSpacing(5)
2014-05-09 04:12:07 -07:00
label = QLabel(_("What do you want to do?"))
2013-09-03 05:32:56 -07:00
label.setWordWrap(True)
grid.addWidget(label, 0, 0)
2014-05-09 04:12:07 -07:00
gb1 = QGroupBox()
grid.addWidget(gb1, 0, 0)
2013-09-03 05:32:56 -07:00
2014-05-09 04:12:07 -07:00
group1 = QButtonGroup()
b1 = QRadioButton(gb1)
2013-09-03 05:32:56 -07:00
b1.setText(_("Create new wallet"))
b1.setChecked(True)
2014-05-09 04:12:07 -07:00
b2 = QRadioButton(gb1)
2014-04-19 11:23:27 -07:00
b2.setText(_("Restore an existing wallet"))
2013-09-03 05:32:56 -07:00
2014-05-09 04:12:07 -07:00
group1.addButton(b1)
group1.addButton(b2)
2013-09-03 05:32:56 -07:00
2014-05-09 04:12:07 -07:00
grid.addWidget(b1, 1, 0)
grid.addWidget(b2, 2, 0)
2013-11-03 02:03:45 -08:00
vbox.addLayout(grid)
2014-05-09 04:12:07 -07:00
grid2 = QGridLayout()
grid2.setSpacing(5)
class ClickableLabel(QLabel):
def mouseReleaseEvent(self, ev):
self.emit(SIGNAL('clicked()'))
label2 = ClickableLabel(_("Wallet type:") + " [+]")
hbox = QHBoxLayout()
hbox.addWidget(label2)
grid2.addLayout(hbox, 3, 0)
2014-05-09 04:12:07 -07:00
gb2 = QGroupBox()
grid.addWidget(gb2, 3, 0)
group2 = QButtonGroup()
bb1 = QRadioButton(gb2)
bb1.setText(_("Standard wallet"))
bb1.setChecked(True)
bb2 = QRadioButton(gb2)
bb2.setText(_("Wallet with two-factor authentication (plugin)"))
bb3 = QRadioButton(gb2)
2014-05-09 07:27:12 -07:00
bb3.setText(_("Multisig wallet (2 of 2)"))
bb3.setHidden(True)
2014-05-09 07:27:12 -07:00
bb4 = QRadioButton(gb2)
bb4.setText(_("Multisig wallet (2 of 3)"))
bb4.setHidden(True)
2014-05-09 04:12:07 -07:00
grid2.addWidget(bb1, 4, 0)
grid2.addWidget(bb2, 5, 0)
grid2.addWidget(bb3, 6, 0)
2014-05-09 07:27:12 -07:00
grid2.addWidget(bb4, 7, 0)
2014-05-09 04:12:07 -07:00
def toggle():
x = not bb3.isHidden()
label2.setText(_("Wallet type:") + (' [+]' if x else ' [-]'))
bb3.setHidden(x)
bb4.setHidden(x)
self.connect(label2, SIGNAL('clicked()'), toggle)
grid2.addWidget(label2)
2014-05-09 04:12:07 -07:00
group2.addButton(bb1)
group2.addButton(bb2)
group2.addButton(bb3)
2014-05-09 07:27:12 -07:00
group2.addButton(bb4)
2014-05-09 04:12:07 -07:00
vbox.addLayout(grid2)
2013-09-12 10:42:00 -07:00
vbox.addStretch(1)
vbox.addLayout(ok_cancel_buttons(self, _('Next')))
2014-05-09 04:12:07 -07:00
self.set_layout(vbox)
self.show()
self.raise_()
2013-09-12 10:42:00 -07:00
if not self.exec_():
2014-05-09 04:12:07 -07:00
return None, None
2013-09-03 05:32:56 -07:00
2014-05-09 04:12:07 -07:00
action = 'create' if b1.isChecked() else 'restore'
if bb1.isChecked():
t = 'standard'
elif bb2.isChecked():
2014-05-09 07:27:12 -07:00
t = '2fa'
2014-05-09 04:12:07 -07:00
elif bb3.isChecked():
2014-05-09 07:27:12 -07:00
t = '2of2'
elif bb4.isChecked():
t = '2of3'
2013-09-03 05:32:56 -07:00
2014-05-09 04:12:07 -07:00
return action, t
2014-04-19 11:23:27 -07:00
def verify_seed(self, seed, sid):
2014-04-29 12:19:42 -07:00
r = self.enter_seed_dialog(MSG_VERIFY_SEED, sid)
2013-09-03 05:32:56 -07:00
if not r:
return
2014-04-06 12:38:53 -07:00
if r != seed:
QMessageBox.warning(None, _('Error'), _('Incorrect seed'), _('OK'))
return False
else:
return True
2014-04-19 11:23:27 -07:00
def get_seed_text(self, seed_e):
2014-04-22 06:49:32 -07:00
text = unicode(seed_e.toPlainText()).strip()
2014-04-22 06:12:36 -07:00
text = ' '.join(text.split())
return text
2013-09-12 10:49:51 -07:00
2014-05-09 04:49:05 -07:00
def is_any(self, seed_e):
2014-04-19 11:23:27 -07:00
text = self.get_seed_text(seed_e)
2014-04-29 12:04:16 -07:00
return Wallet.is_seed(text) or Wallet.is_mpk(text) or Wallet.is_address(text) or Wallet.is_private_key(text)
2013-09-12 10:42:00 -07:00
2014-05-09 04:49:05 -07:00
def is_mpk(self, seed_e):
text = self.get_seed_text(seed_e)
return Wallet.is_mpk(text)
2014-04-29 12:19:42 -07:00
def enter_seed_dialog(self, msg, sid):
vbox, seed_e = seed_dialog.enter_seed_box(msg, sid)
2013-09-12 10:42:00 -07:00
vbox.addStretch(1)
2014-04-19 11:23:27 -07:00
hbox, button = ok_cancel_buttons2(self, _('Next'))
vbox.addLayout(hbox)
button.setEnabled(False)
2014-05-09 04:49:05 -07:00
seed_e.textChanged.connect(lambda: button.setEnabled(self.is_any(seed_e)))
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-09-12 10:42:00 -07:00
if not self.exec_():
return
2014-04-19 11:23:27 -07:00
return self.get_seed_text(seed_e)
2014-05-12 01:53:04 -07:00
def multi_mpk_dialog(self, xpub_hot, n):
2014-05-09 07:27:12 -07:00
vbox = QVBoxLayout()
vbox0, seed_e0 = seed_dialog.enter_seed_box(MSG_SHOW_MPK, 'hot')
2014-05-12 01:53:04 -07:00
vbox.addLayout(vbox0)
2014-05-09 07:27:12 -07:00
seed_e0.setText(xpub_hot)
seed_e0.setReadOnly(True)
2014-05-12 01:53:04 -07:00
entries = []
for i in range(n):
vbox2, seed_e2 = seed_dialog.enter_seed_box(MSG_ENTER_COLD_MPK, 'cold')
vbox.addLayout(vbox2)
entries.append(seed_e2)
2014-05-09 07:27:12 -07:00
vbox.addStretch(1)
hbox, button = ok_cancel_buttons2(self, _('Next'))
vbox.addLayout(hbox)
button.setEnabled(False)
2014-05-12 01:53:04 -07:00
f = lambda: button.setEnabled( map(lambda e: self.is_mpk(e), entries) == [True]*len(entries))
for e in entries:
e.textChanged.connect(f)
2014-05-09 07:27:12 -07:00
self.set_layout(vbox)
if not self.exec_():
2014-05-12 01:53:04 -07:00
return
return map(lambda e: self.get_seed_text(e), entries)
2014-05-09 07:27:12 -07:00
2014-05-12 01:53:04 -07:00
def multi_seed_dialog(self, n):
2014-04-19 11:23:27 -07:00
vbox = QVBoxLayout()
2014-04-29 12:19:42 -07:00
vbox1, seed_e1 = seed_dialog.enter_seed_box(MSG_ENTER_SEED_OR_MPK, 'hot')
2014-04-19 11:23:27 -07:00
vbox.addLayout(vbox1)
2014-05-12 01:53:04 -07:00
entries = [seed_e1]
for i in range(n):
vbox2, seed_e2 = seed_dialog.enter_seed_box(MSG_ENTER_SEED_OR_MPK, 'cold')
vbox.addLayout(vbox2)
entries.append(seed_e2)
2014-04-19 11:23:27 -07:00
vbox.addStretch(1)
hbox, button = ok_cancel_buttons2(self, _('Next'))
vbox.addLayout(hbox)
button.setEnabled(False)
2014-05-12 01:53:04 -07:00
f = lambda: button.setEnabled( map(lambda e: self.is_any(e), entries) == [True]*len(entries))
for e in entries:
e.textChanged.connect(f)
2014-04-19 11:23:27 -07:00
self.set_layout(vbox)
if not self.exec_():
return
2014-05-12 01:53:04 -07:00
return map(lambda e: self.get_seed_text(e), entries)
2014-04-05 01:34:51 -07:00
2013-09-12 07:08:17 -07:00
def waiting_dialog(self, task, msg= _("Electrum is generating your addresses, please wait.")):
2013-09-12 10:42:00 -07:00
def target():
task()
self.emit(QtCore.SIGNAL('accept'))
2013-11-03 02:03:45 -08:00
vbox = QVBoxLayout()
2013-09-12 10:42:00 -07:00
self.waiting_label = QLabel(msg)
vbox.addWidget(self.waiting_label)
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-09-12 10:42:00 -07:00
t = threading.Thread(target = target)
t.start()
self.exec_()
2013-09-03 09:35:46 -07:00
def network_dialog(self):
2013-09-03 05:32:56 -07:00
grid = QGridLayout()
grid.setSpacing(5)
label = QLabel(_("Electrum communicates with remote servers to get information about your transactions and addresses. The servers all fulfil the same purpose only differing in hardware. In most cases you simply want to let Electrum pick one at random if you have a preference though feel free to select a server manually.") + "\n\n" \
+ _("How do you want to connect to a server:")+" ")
label.setWordWrap(True)
2013-09-03 05:32:56 -07:00
grid.addWidget(label, 0, 0)
gb = QGroupBox()
b1 = QRadioButton(gb)
b1.setText(_("Auto connect"))
b1.setChecked(True)
b2 = QRadioButton(gb)
b2.setText(_("Select server manually"))
#b3 = QRadioButton(gb)
#b3.setText(_("Stay offline"))
2013-09-03 05:32:56 -07:00
grid.addWidget(b1,1,0)
grid.addWidget(b2,2,0)
#grid.addWidget(b3,3,0)
2013-09-03 05:32:56 -07:00
2013-11-03 02:03:45 -08:00
vbox = QVBoxLayout()
2013-09-03 05:32:56 -07:00
vbox.addLayout(grid)
2013-09-12 10:42:00 -07:00
vbox.addStretch(1)
vbox.addLayout(ok_cancel_buttons(self, _('Next')))
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-09-12 10:42:00 -07:00
if not self.exec_():
2013-09-03 05:32:56 -07:00
return
if b2.isChecked():
return NetworkDialog(self.network, self.config, None).do_exec()
2013-09-03 05:32:56 -07:00
elif b1.isChecked():
self.config.set_key('auto_cycle', True, True)
return
else:
self.config.set_key("server", None, True)
self.config.set_key('auto_cycle', False, True)
return
2013-11-03 02:03:45 -08:00
def show_message(self, msg, icon=None):
2014-04-06 12:38:53 -07:00
vbox = QVBoxLayout()
self.set_layout(vbox)
if icon:
logo = QLabel()
logo.setPixmap(icon)
vbox.addWidget(logo)
2014-04-06 12:38:53 -07:00
vbox.addWidget(QLabel(msg))
vbox.addStretch(1)
vbox.addLayout(close_button(self, _('Next')))
if not self.exec_():
return None
def question(self, msg, icon=None):
2014-04-06 12:38:53 -07:00
vbox = QVBoxLayout()
self.set_layout(vbox)
if icon:
logo = QLabel()
logo.setPixmap(icon)
vbox.addWidget(logo)
2014-04-06 12:38:53 -07:00
vbox.addWidget(QLabel(msg))
vbox.addStretch(1)
vbox.addLayout(ok_cancel_buttons(self, _('OK')))
2014-04-06 12:38:53 -07:00
if not self.exec_():
return None
return True
2014-04-06 12:38:53 -07:00
def show_seed(self, seed, sid):
2014-04-19 11:23:27 -07:00
vbox = seed_dialog.show_seed_box(seed, sid)
2013-10-03 00:19:09 -07:00
vbox.addLayout(ok_cancel_buttons(self, _("Next")))
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-11-12 13:55:42 -08:00
return self.exec_()
def password_dialog(self):
2013-09-12 10:42:00 -07:00
msg = _("Please choose a password to encrypt your wallet keys.")+'\n'\
+_("Leave these fields empty if you want to disable encryption.")
from password_dialog import make_password_dialog, run_password_dialog
self.set_layout( make_password_dialog(self, None, msg) )
return run_password_dialog(self, None, self)[2]
2014-05-09 07:27:12 -07:00
def create_cold_seed(self, wallet):
from electrum.bitcoin import mnemonic_to_seed, bip32_root
msg = _('You are about to generate the cold storage seed of your wallet.') + '\n' \
+ _('For safety, you should do this on an offline computer.')
icon = QPixmap( ':icons/cold_seed.png').scaledToWidth(56)
if not self.question(msg, icon):
return
cold_seed = wallet.make_seed()
if not self.show_seed(cold_seed, 'cold'):
return
if not self.verify_seed(cold_seed, 'cold'):
return
hex_seed = mnemonic_to_seed(cold_seed,'').encode('hex')
xpriv, xpub = bip32_root(hex_seed)
wallet.add_master_public_key('cold/', xpub)
msg = _('Your master public key was saved in your wallet file.') + '\n'\
+ _('Your cold seed must be stored on paper; it is not in the wallet file.')+ '\n\n' \
+ _('This program is about to close itself.') + '\n'\
+ _('You will need to reopen your wallet on an online computer, in order to complete the creation of your wallet')
self.show_message(msg)
2014-04-06 12:38:53 -07:00
2014-04-28 08:30:48 -07:00
def run(self, action):
2014-04-06 12:38:53 -07:00
2014-04-28 08:30:48 -07:00
if action == 'new':
2014-05-09 04:12:07 -07:00
action, t = self.restore_or_create()
2013-09-03 01:58:07 -07:00
2014-04-06 12:38:53 -07:00
if action is None:
return
2014-05-09 07:27:12 -07:00
if action == 'create':
2014-05-09 07:27:12 -07:00
if t == 'standard':
wallet = Wallet(self.storage)
2014-04-28 08:30:48 -07:00
2014-05-09 07:27:12 -07:00
elif t == '2fa':
wallet = Wallet_2of3(self.storage)
run_hook('create_cold_seed', wallet, self)
self.create_cold_seed(wallet)
2014-04-06 12:38:53 -07:00
return
2014-05-09 07:27:12 -07:00
elif t == '2of2':
wallet = Wallet_2of2(self.storage)
action = 'create_2of2_1'
elif t == '2of3':
wallet = Wallet_2of3(self.storage)
action = 'create_2of3_1'
2014-04-06 12:38:53 -07:00
2014-05-12 01:53:04 -07:00
if action in ['create_2fa_2', 'create_2of3_2']:
2014-05-09 07:27:12 -07:00
wallet = Wallet_2of3(self.storage)
2014-04-28 08:30:48 -07:00
2014-05-09 07:27:12 -07:00
if action in ['create', 'create_2of2_1', 'create_2fa_2', 'create_2of3_1']:
seed = wallet.make_seed()
2014-05-09 07:27:12 -07:00
sid = None if action == 'create' else 'hot'
if not self.show_seed(seed, sid):
2013-11-12 13:55:42 -08:00
return
2014-05-09 07:27:12 -07:00
if not self.verify_seed(seed, sid):
2013-09-03 01:58:07 -07:00
return
password = self.password_dialog()
2014-04-28 05:58:43 -07:00
wallet.add_seed(seed, password)
2014-05-09 07:27:12 -07:00
if action == 'create':
wallet.create_accounts(password)
self.waiting_dialog(wallet.synchronize)
elif action == 'create_2of2_1':
action = 'create_2of2_2'
2014-05-09 07:27:12 -07:00
elif action == 'create_2of3_1':
action = 'create_2of3_2'
elif action == 'create_2fa_2':
action = 'create_2fa_3'
2014-04-06 12:38:53 -07:00
if action == 'create_2of2_2':
2014-05-09 04:49:05 -07:00
xpub_hot = wallet.master_public_keys.get("m/")
2014-05-12 01:53:04 -07:00
xpub = self.multi_mpk_dialog(xpub_hot, 1)
if not xpub:
return
wallet.add_master_public_key("cold/", xpub)
wallet.create_account()
self.waiting_dialog(wallet.synchronize)
2014-04-06 12:38:53 -07:00
2014-05-09 07:27:12 -07:00
if action == 'create_2of3_2':
xpub_hot = wallet.master_public_keys.get("m/")
2014-05-12 01:53:04 -07:00
r = self.multi_mpk_dialog(xpub_hot, 2)
if not r:
return
xpub1, xpub2 = r
2014-05-09 07:27:12 -07:00
wallet.add_master_public_key("cold/", xpub1)
wallet.add_master_public_key("remote/", xpub2)
wallet.create_account()
self.waiting_dialog(wallet.synchronize)
if action == 'create_2fa_3':
2014-04-28 08:30:48 -07:00
run_hook('create_remote_key', wallet, self)
if not wallet.master_public_keys.get("remote/"):
return
wallet.create_account()
2014-04-19 11:23:27 -07:00
self.waiting_dialog(wallet.synchronize)
2013-11-12 13:55:42 -08:00
2014-04-28 08:30:48 -07:00
if action == 'restore':
2014-04-19 11:23:27 -07:00
if t == 'standard':
2014-04-29 12:19:42 -07:00
text = self.enter_seed_dialog(MSG_ENTER_ANYTHING, None)
2014-04-29 10:33:42 -07:00
if not text:
return
2014-04-19 11:23:27 -07:00
if Wallet.is_seed(text):
password = self.password_dialog()
2014-04-19 11:23:27 -07:00
wallet = Wallet.from_seed(text, self.storage)
2014-04-28 05:58:43 -07:00
wallet.add_seed(text, password)
2014-04-19 11:23:27 -07:00
wallet.create_accounts(password)
elif Wallet.is_mpk(text):
wallet = Wallet.from_mpk(text, self.storage)
2014-04-29 12:04:16 -07:00
elif Wallet.is_address(text):
wallet = Wallet.from_address(text, self.storage)
elif Wallet.is_private_key(text):
wallet = Wallet.from_private_key(text, self.storage)
2014-04-19 11:23:27 -07:00
else:
2014-04-20 01:42:13 -07:00
raise
2014-04-19 11:23:27 -07:00
2014-05-12 01:53:04 -07:00
elif t in ['2fa', '2of2']:
r = self.multi_seed_dialog(1)
2014-04-19 11:23:27 -07:00
if not r:
return
text1, text2 = r
password = self.password_dialog()
2014-05-09 07:27:12 -07:00
if t == '2of2':
wallet = Wallet_2of2(self.storage)
2014-05-09 07:27:12 -07:00
elif t == '2of3':
wallet = Wallet_2of3(self.storage)
elif t == '2fa':
wallet = Wallet_2of3(self.storage)
2014-04-19 11:23:27 -07:00
if Wallet.is_seed(text1):
2014-04-25 08:51:41 -07:00
wallet.add_seed(text1, password)
if Wallet.is_seed(text2):
wallet.add_cold_seed(text2, password)
else:
wallet.add_master_public_key("cold/", text2)
2014-04-19 11:23:27 -07:00
elif Wallet.is_mpk(text1):
2014-04-25 08:51:41 -07:00
if Wallet.is_seed(text2):
wallet.add_seed(text2, password)
wallet.add_master_public_key("cold/", text1)
else:
wallet.add_master_public_key("m/", text1)
wallet.add_master_public_key("cold/", text2)
2014-04-19 11:23:27 -07:00
2014-05-12 01:53:04 -07:00
if t == '2fa':
run_hook('restore_third_key', wallet, self)
2014-04-19 11:23:27 -07:00
wallet.create_account()
2014-04-19 11:23:27 -07:00
2014-05-12 01:53:04 -07:00
elif t in ['2of3']:
r = self.multi_seed_dialog(2)
if not r:
return
text1, text2, text3 = r
password = self.password_dialog()
wallet = Wallet_2of3(self.storage)
if Wallet.is_seed(text1):
wallet.add_seed(text1, password)
if Wallet.is_seed(text2):
wallet.add_cold_seed(text2, password)
else:
wallet.add_master_public_key("cold/", text2)
elif Wallet.is_mpk(text1):
if Wallet.is_seed(text2):
wallet.add_seed(text2, password)
wallet.add_master_public_key("cold/", text1)
else:
wallet.add_master_public_key("m/", text1)
wallet.add_master_public_key("cold/", text2)
wallet.create_account()
2014-04-20 01:42:13 -07:00
else:
raise
2014-04-19 11:23:27 -07:00
2013-09-03 01:58:07 -07:00
#if not self.config.get('server'):
2013-11-05 09:55:53 -08:00
if self.network:
if self.network.interfaces:
self.network_dialog()
else:
QMessageBox.information(None, _('Warning'), _('You are offline'), _('OK'))
self.network.stop()
self.network = None
# start wallet threads
2013-09-10 05:20:44 -07:00
wallet.start_threads(self.network)
2013-09-03 05:32:56 -07:00
if action == 'restore':
self.waiting_dialog(lambda: wallet.restore(self.waiting_label.setText))
2013-09-12 10:42:00 -07:00
2013-11-05 09:55:53 -08:00
if self.network:
if wallet.is_found():
QMessageBox.information(None, _('Information'), _("Recovery successful"), _('OK'))
else:
QMessageBox.information(None, _('Information'), _("No transactions found for this seed"), _('OK'))
2013-09-12 10:42:00 -07:00
else:
2013-11-05 09:55:53 -08:00
QMessageBox.information(None, _('Information'), _("This wallet was restored offline. It may contain more addresses than displayed."), _('OK'))
2013-09-03 01:09:13 -07:00
return wallet