electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 63769c84d11d0d087b7d2ac9a03ee217109ded22
parent 5a0283693347f5cef0a8672218d9ed6507e5359f
Author: ThomasV <thomasv@gitorious>
Date:   Sun, 27 Apr 2014 13:24:31 +0200

fix: add_seed

Diffstat:
Melectrum | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)