Browse Source

return is_new

283
thomasv 13 years ago
parent
commit
14691ad9a8
  1. 4
      client/interface.py
  2. 4
      client/wallet.py

4
client/interface.py

@ -151,10 +151,10 @@ class Interface:
is_new = True
if is_new or wallet.remote_url:
wallet.synchronize()
is_new = wallet.synchronize()
wallet.update_tx_history()
wallet.save()
return True
return is_new
else:
return False

4
client/wallet.py

@ -484,9 +484,11 @@ class Wallet:
if self.remote_url:
num = self.get_remote_number()
print num
while len(self.addresses)<num:
self.create_new_address(False)
is_new = True
return is_new
def get_remote_number(self):
import jsonrpclib

Loading…
Cancel
Save