mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 10:15:20 +00:00
fix: the gap limit is one value higher than the gap
This commit is contained in:
parent
6b0499bcbc
commit
e0372fc3a6
1 changed files with 1 additions and 1 deletions
|
@ -528,7 +528,7 @@ class Wallet:
|
||||||
else:
|
else:
|
||||||
n += 1
|
n += 1
|
||||||
if n > nmax: nmax = n
|
if n > nmax: nmax = n
|
||||||
return nmax
|
return nmax + 1
|
||||||
|
|
||||||
|
|
||||||
def synchronize(self):
|
def synchronize(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue