Skip to content

Commit

Permalink
Added warning message about wlt migrate with 0.6.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
etotheipi committed Mar 19, 2012
1 parent 2649829 commit ca6fd1b
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 48,214 deletions.
19 changes: 19 additions & 0 deletions ArmoryQt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1372,6 +1372,25 @@ def execRestorePaperBackup(self):

#############################################################################
def execMigrateSatoshi(self):
reply = MsgBoxCustom(MSGBOX.Question, 'Wallet Version Warning', \
'This wallet migration tool only works with regular Bitcoin wallets '
'produced using version 0.5.X and earlier. '
'You can determine the version by '
'opening the regular Bitcoin client, then choosing "Help"'
'-->"About Bitcoin-Qt" from the main menu. '
'<br><br>'
'<b>If you have used your wallet with any version of the regular '
'Bitcoin client 0.6.0 or higher, this tool <u>will fail</u></b>. '
'In fact, it is highly recommended that you do not even attempt '
'to use the tool on such wallets until it is officially supported '
'by Armory.'
'<br><br>'
'Has your wallet ever been opened in the 0.6.0+ Satoshi client?', \
yesStr='Yes, Abort!', noStr='No, Carry On!')

if reply:
return

DlgMigrateSatoshiWallet(self, self).exec_()


Expand Down
Loading

0 comments on commit ca6fd1b

Please sign in to comment.