document the distinction between up_to_date and is_up_to_date
authorthomasv <thomasv@gitorious>
Fri, 4 May 2012 09:14:07 +0000 (11:14 +0200)
committerthomasv <thomasv@gitorious>
Fri, 4 May 2012 09:14:07 +0000 (11:14 +0200)
wallet.py

index 1cce9fe..fd3fa52 100644 (file)
--- a/wallet.py
+++ b/wallet.py
@@ -277,6 +277,10 @@ class Wallet:
         self.was_updated = True
         self.blocks = -1
         self.banner = ''
+
+        # there is a difference between self.up_to_date and self.is_up_to_date()
+        # self.is_up_to_date() returns true when all requests have been answered and processed
+        # self.up_to_date is true when the wallet is synchronized (stronger requirement)
         self.up_to_date_event = threading.Event()
         self.up_to_date_event.clear()
         self.up_to_date = False