fix: the gap limit is one value higher than the gap

This commit is contained in:
thomasv 2012-06-07 18:59:28 +02:00
parent 6b0499bcbc
commit e0372fc3a6

View file

@ -528,7 +528,7 @@ class Wallet:
else:
n += 1
if n > nmax: nmax = n
return nmax
return nmax + 1
def synchronize(self):