htlcswitch: add InterceptableSwitchConfig

Preparation for adding more config options.
This commit is contained in:
Joost Jager
2022-08-15 13:00:08 +02:00
parent 4fbd608b73
commit 4a3e90f4d0
4 changed files with 43 additions and 12 deletions

View File

@@ -367,7 +367,9 @@ func createTestPeer(t *testing.T, notifier chainntnfs.ChainNotifier,
Switch: mockSwitch,
ChanActiveTimeout: chanActiveTimeout,
InterceptSwitch: htlcswitch.NewInterceptableSwitch(
nil, testCltvRejectDelta, false,
&htlcswitch.InterceptableSwitchConfig{
CltvRejectDelta: testCltvRejectDelta,
},
),
ChannelDB: dbAlice.ChannelStateDB(),
FeeEstimator: estimator,