mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
peer: only pass duration to htlcswitch.NewBatchTicker
This commit is contained in:
parent
3ed2241a94
commit
0efe5ca49d
10
peer.go
10
peer.go
@ -542,12 +542,10 @@ func (p *peer) addLink(chanPoint *wire.OutPoint,
|
||||
*chanPoint, signals,
|
||||
)
|
||||
},
|
||||
OnChannelFailure: onChannelFailure,
|
||||
SyncStates: syncStates,
|
||||
BatchTicker: htlcswitch.NewBatchTicker(
|
||||
time.NewTicker(50 * time.Millisecond)),
|
||||
FwdPkgGCTicker: htlcswitch.NewBatchTicker(
|
||||
time.NewTicker(time.Minute)),
|
||||
OnChannelFailure: onChannelFailure,
|
||||
SyncStates: syncStates,
|
||||
BatchTicker: htlcswitch.NewBatchTicker(50 * time.Millisecond),
|
||||
FwdPkgGCTicker: htlcswitch.NewBatchTicker(time.Minute),
|
||||
BatchSize: 10,
|
||||
UnsafeReplay: cfg.UnsafeReplay,
|
||||
MinFeeUpdateTimeout: htlcswitch.DefaultMinLinkFeeUpdateTimeout,
|
||||
|
Loading…
Reference in New Issue
Block a user