peer: only pass duration to htlcswitch.NewBatchTicker

This commit is contained in:
Conner Fromknecht 2018-07-30 22:28:37 -07:00
parent 3ed2241a94
commit 0efe5ca49d
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

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,