mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
wallet: increase gap limit for change (6 -> 10)
We are now using change addresses for the channel SRK to_remote outputs (and reserving these change addresses). (see prev commits) Note that every channel open we initiate typically uses two change addresses: - one for the SRK to_remote output, and - one for the funding tx change output (assuming there is change).
This commit is contained in:
parent
530a446172
commit
cdecc4e3fa
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class Abstract_Wallet(AddressSynchronizer, ABC):
|
|||
|
||||
LOGGING_SHORTCUT = 'w'
|
||||
max_change_outputs = 3
|
||||
gap_limit_for_change = 6
|
||||
gap_limit_for_change = 10
|
||||
|
||||
txin_type: str
|
||||
wallet_type: str
|
||||
|
|
Loading…
Add table
Reference in a new issue