Browse Source

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

283
thomasv 13 years ago
parent
commit
e0372fc3a6
  1. 2
      lib/wallet.py

2
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):

Loading…
Cancel
Save