mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
Merge pull request #7609 from Roasbeef/80-block-cltv
chainreg: increase default CLTV value to 80 blocks (~13 hrs)
This commit is contained in:
commit
f56c9e9c8a
3 changed files with 7 additions and 2 deletions
|
@ -128,7 +128,7 @@ const (
|
|||
|
||||
// DefaultBitcoinTimeLockDelta is the default forwarding time lock
|
||||
// delta.
|
||||
DefaultBitcoinTimeLockDelta = 40
|
||||
DefaultBitcoinTimeLockDelta = 80
|
||||
|
||||
DefaultLitecoinMinHTLCInMSat = lnwire.MilliSatoshi(1)
|
||||
DefaultLitecoinMinHTLCOutMSat = lnwire.MilliSatoshi(1000)
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
# Release Notes
|
||||
|
||||
## Routing
|
||||
|
||||
* The default CLTV delta delay [has been increased from 40 blocks to 80
|
||||
blocks](https://github.com/lightningnetwork/lnd/pull/7609).
|
||||
|
||||
## Wallet
|
||||
|
||||
- The logging around transaction broadcast failures [has been improved by always
|
||||
|
|
|
@ -532,7 +532,7 @@ bitcoin.node=btcd
|
|||
; bitcoin.feerate=1
|
||||
|
||||
; The CLTV delta we will subtract from a forwarded HTLC's timelock value.
|
||||
; bitcoin.timelockdelta=40
|
||||
; bitcoin.timelockdelta=80
|
||||
|
||||
; The seed DNS server(s) to use for initial peer discovery. Must be specified as
|
||||
; a '<primary_dns>[,<soa_primary_dns>]' tuple where the SOA address is needed
|
||||
|
|
Loading…
Add table
Reference in a new issue