tfix: add_seed - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 63769c84d11d0d087b7d2ac9a03ee217109ded22 DIR parent 5a0283693347f5cef0a8672218d9ed6507e5359f HTML Author: ThomasV <thomasv@gitorious> Date: Sun, 27 Apr 2014 13:24:31 +0200 fix: add_seed Diffstat: M electrum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum b/electrum t@@ -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)