1
0

hooks and workflow for 2of3 wallets

This commit is contained in:
ThomasV
2014-04-06 21:38:53 +02:00
parent f4b1621910
commit 102bc204d5
6 changed files with 234 additions and 87 deletions

View File

@@ -91,6 +91,7 @@ def arg_parser():
parser.add_option("-W", "--password", dest="password", default=None, help="set password for usage with commands (currently only implemented for create command, do not use it for longrunning gui session since the password is visible in /proc)")
parser.add_option("-1", "--oneserver", action="store_true", dest="oneserver", default=False, help="connect to one server only")
parser.add_option("--bip32", action="store_true", dest="bip32", default=False, help="bip32 (not final)")
parser.add_option("--2of3", action="store_true", dest="2of3", default=False, help="create 2of3 wallet")
parser.add_option("--mpk", dest="mpk", default=False, help="restore from master public key")
return parser
@@ -269,12 +270,20 @@ if __name__ == '__main__':
print_msg("Warning: This wallet was restored offline. It may contain more addresses than displayed.")
else:
wallet = Wallet(storage)
wallet.init_seed(None)
wallet.save_seed(password)
wallet.synchronize()
print_msg("Your wallet generation seed is:\n\"%s\"" % wallet.get_mnemonic(password))
print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.")
if not config.get('2of3'):
wallet = Wallet(storage)
wallet.init_seed(None)
wallet.save_seed(password)
wallet.synchronize()
print_msg("Your wallet generation seed is:\n\"%s\"" % wallet.get_mnemonic(password))
print_msg("Please keep it in a safe place; if you lose it, you will not be able to restore your wallet.")
else:
wallet = Wallet_2of3(storage)
cold_seed = wallet.init_cold_seed()
print_msg("Your cold seed is:\n\"%s\"" % cold_seed)
print_msg("Please store it on paper. ")
print_msg("Open this file on your online computer to complete your wallet creation.")
print_msg("Wallet saved in '%s'" % wallet.storage.path)