From 63769c84d11d0d087b7d2ac9a03ee217109ded22 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 27 Apr 2014 13:24:31 +0200 Subject: [PATCH] fix: add_seed --- electrum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum b/electrum index b98acecec..19f5d3069 100755 --- a/electrum +++ b/electrum @@ -274,7 +274,7 @@ if __name__ == '__main__': if not config.get('2of3'): wallet = Wallet(storage) seed = wallet.make_seed() - wallet.save_seed(seed, password) + wallet.add_seed(seed, password) wallet.create_accounts(password) wallet.synchronize() print_msg("Your wallet generation seed is:\n\"%s\"" % seed)