File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -6437,6 +6437,26 @@ impl<Signer: WriteableEcdsaChannelSigner> Channel<Signer> {
6437
6437
}
6438
6438
}
6439
6439
6440
+ // A not-yet-funded outbound (from holder) channel using V1 channel establishment.
6441
+ pub ( super ) struct OutboundV1Channel < Signer : ChannelSigner > {
6442
+ #[ cfg( not( test) ) ]
6443
+ context : ChannelContext < Signer > ,
6444
+ #[ cfg( test) ]
6445
+ pub context : ChannelContext < Signer > ,
6446
+ }
6447
+
6448
+ impl < Signer : WriteableEcdsaChannelSigner > OutboundV1Channel < Signer > { }
6449
+
6450
+ // A not-yet-funded inbound (from counterparty) channel using V1 channel establishment.
6451
+ pub ( super ) struct InboundV1Channel < Signer : ChannelSigner > {
6452
+ #[ cfg( not( test) ) ]
6453
+ context : ChannelContext < Signer > ,
6454
+ #[ cfg( test) ]
6455
+ pub context : ChannelContext < Signer > ,
6456
+ }
6457
+
6458
+ impl < Signer : WriteableEcdsaChannelSigner > InboundV1Channel < Signer > { }
6459
+
6440
6460
const SERIALIZATION_VERSION : u8 = 3 ;
6441
6461
const MIN_SERIALIZATION_VERSION : u8 = 2 ;
6442
6462
You can’t perform that action at this time.
0 commit comments