tsynchronize after creation - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit bcee01f4bb0517a72a5a1c7cc70ea099401ed76f
DIR parent 29ee4d5a28483b844d234615f089344c35783be5
HTML Author: ThomasV <thomasv@gitorious>
Date: Sun, 18 Dec 2011 23:02:59 +0100
synchronize after creation
Diffstat:
M client/electrum.py | 2 +-
M client/gui.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/client/electrum.py b/client/electrum.py
t@@ -767,7 +767,7 @@ if __name__ == '__main__':
print "Your seed is", wallet.seed
print "Please store it safely"
# generate first key
- wallet.create_new_address2(False)
+ wallet.synchronize()
# check syntax
if cmd in ['payto', 'mktx']:
DIR diff --git a/client/gui.py b/client/gui.py
t@@ -113,7 +113,7 @@ def init_wallet(wallet):
run_settings_dialog(wallet, is_create=True, is_recovery=False, parent=None)
# generate first key
- wallet.create_new_address2(False)
+ wallet.synchronize()
# run a dialog indicating the seed, ask the user to remember it
show_seed_dialog(wallet, None, None)