return is_new

This commit is contained in:
thomasv 2012-02-22 17:11:21 +01:00
parent c22f839c9e
commit 14691ad9a8
2 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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