@@ -67,7 +67,7 @@ class WaitForAcceptChannelStateSpec extends TestKitBaseClass with FixtureAnyFunS
6767 alice.underlying.system.eventStream.subscribe(listener.ref, classOf [ChannelAborted ])
6868 val fundingAmount = if (test.tags.contains(LargeChannel )) Btc (5 ).toSatoshi else TestConstants .fundingSatoshis
6969 alice ! INPUT_INIT_CHANNEL_INITIATOR (ByteVector32 .Zeroes , fundingAmount, dualFunded = false , commitTxFeerate, TestConstants .feeratePerKw, fundingTxFeeBudget_opt = None , Some (TestConstants .initiatorPushAmount), requireConfirmedInputs = false , requestFunding_opt = None , aliceParams, alice2bob.ref, bobInit, channelFlags, channelConfig, channelType, replyTo = aliceOpenReplyTo.ref.toTyped)
70- bob ! INPUT_INIT_CHANNEL_NON_INITIATOR (ByteVector32 .Zeroes , None , dualFunded = false , None , bobParams, bob2alice.ref, aliceInit, channelConfig, channelType)
70+ bob ! INPUT_INIT_CHANNEL_NON_INITIATOR (ByteVector32 .Zeroes , None , dualFunded = false , None , requireConfirmedInputs = false , bobParams, bob2alice.ref, aliceInit, channelConfig, channelType)
7171 alice2bob.expectMsgType[OpenChannel ]
7272 alice2bob.forward(bob)
7373 awaitCond(alice.stateName == WAIT_FOR_ACCEPT_CHANNEL )
@@ -173,7 +173,7 @@ class WaitForAcceptChannelStateSpec extends TestKitBaseClass with FixtureAnyFunS
173173 val aliceParams = Alice .channelParams
174174 val bobParams = Bob .channelParams.copy(initFeatures = Features (Features .StaticRemoteKey -> FeatureSupport .Optional , Features .AnchorOutputs -> FeatureSupport .Optional ))
175175 alice ! INPUT_INIT_CHANNEL_INITIATOR (ByteVector32 .Zeroes , TestConstants .fundingSatoshis, dualFunded = false , TestConstants .anchorOutputsFeeratePerKw, TestConstants .feeratePerKw, fundingTxFeeBudget_opt = None , Some (TestConstants .initiatorPushAmount), requireConfirmedInputs = false , requestFunding_opt = None , aliceParams, alice2bob.ref, Init (bobParams.initFeatures), channelFlags, channelConfig, ChannelTypes .AnchorOutputs (), replyTo = aliceOpenReplyTo.ref.toTyped)
176- bob ! INPUT_INIT_CHANNEL_NON_INITIATOR (ByteVector32 .Zeroes , None , dualFunded = false , None , bobParams, bob2alice.ref, Init (bobParams.initFeatures), channelConfig, ChannelTypes .AnchorOutputs ())
176+ bob ! INPUT_INIT_CHANNEL_NON_INITIATOR (ByteVector32 .Zeroes , None , dualFunded = false , None , requireConfirmedInputs = false , bobParams, bob2alice.ref, Init (bobParams.initFeatures), channelConfig, ChannelTypes .AnchorOutputs ())
177177 val open = alice2bob.expectMsgType[OpenChannel ]
178178 assert(open.channelType_opt.contains(ChannelTypes .AnchorOutputs ()))
179179 alice2bob.forward(bob, open)
0 commit comments