commit e0372fc3a622a93befc52b78a73392838bbd7f67 parent 6b0499bcbcfb1bb57d0b6b154e8abb03b8d2f967 Author: thomasv <thomasv@gitorious> Date: Thu, 7 Jun 2012 18:59:28 +0200 fix: the gap limit is one value higher than the gap Diffstat:
M | lib/wallet.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py @@ -528,7 +528,7 @@ class Wallet: else: n += 1 if n > nmax: nmax = n - return nmax + return nmax + 1 def synchronize(self):