@@ -15,7 +15,8 @@ use crate::blinded_path::{BlindedHop, BlindedPath, Direction, IntroductionNode};
15
15
use crate :: blinded_path:: message;
16
16
use crate :: blinded_path:: payment:: { ForwardTlvs , PaymentConstraints , PaymentRelay , ReceiveTlvs , self } ;
17
17
use crate :: ln:: { PaymentHash , PaymentPreimage } ;
18
- use crate :: ln:: channelmanager:: { ChannelDetails , PaymentId , MIN_FINAL_CLTV_EXPIRY_DELTA , RecipientOnionFields } ;
18
+ use crate :: ln:: channel_state:: ChannelDetails ;
19
+ use crate :: ln:: channelmanager:: { PaymentId , MIN_FINAL_CLTV_EXPIRY_DELTA , RecipientOnionFields } ;
19
20
use crate :: ln:: features:: { BlindedHopFeatures , Bolt11InvoiceFeatures , Bolt12InvoiceFeatures , ChannelFeatures , NodeFeatures } ;
20
21
use crate :: ln:: msgs:: { DecodeError , ErrorAction , LightningError , MAX_VALUE_MSAT } ;
21
22
use crate :: ln:: onion_utils;
@@ -3321,6 +3322,7 @@ mod tests {
3321
3322
use crate :: routing:: test_utils:: { add_channel, add_or_update_node, build_graph, build_line_graph, id_to_feature_flags, get_nodes, update_channel} ;
3322
3323
use crate :: chain:: transaction:: OutPoint ;
3323
3324
use crate :: sign:: EntropySource ;
3325
+ use crate :: ln:: channel_state:: { ChannelCounterparty , ChannelDetails , ChannelShutdownState } ;
3324
3326
use crate :: ln:: types:: ChannelId ;
3325
3327
use crate :: ln:: features:: { BlindedHopFeatures , ChannelFeatures , InitFeatures , NodeFeatures } ;
3326
3328
use crate :: ln:: msgs:: { ErrorAction , LightningError , UnsignedChannelUpdate , MAX_VALUE_MSAT } ;
@@ -3349,10 +3351,10 @@ mod tests {
3349
3351
use crate :: sync:: Arc ;
3350
3352
3351
3353
fn get_channel_details ( short_channel_id : Option < u64 > , node_id : PublicKey ,
3352
- features : InitFeatures , outbound_capacity_msat : u64 ) -> channelmanager :: ChannelDetails {
3353
- channelmanager :: ChannelDetails {
3354
+ features : InitFeatures , outbound_capacity_msat : u64 ) -> ChannelDetails {
3355
+ ChannelDetails {
3354
3356
channel_id : ChannelId :: new_zero ( ) ,
3355
- counterparty : channelmanager :: ChannelCounterparty {
3357
+ counterparty : ChannelCounterparty {
3356
3358
features,
3357
3359
node_id,
3358
3360
unspendable_punishment_reserve : 0 ,
@@ -3382,7 +3384,7 @@ mod tests {
3382
3384
inbound_htlc_maximum_msat : None ,
3383
3385
config : None ,
3384
3386
feerate_sat_per_1000_weight : None ,
3385
- channel_shutdown_state : Some ( channelmanager :: ChannelShutdownState :: NotShuttingDown ) ,
3387
+ channel_shutdown_state : Some ( ChannelShutdownState :: NotShuttingDown ) ,
3386
3388
pending_inbound_htlcs : Vec :: new ( ) ,
3387
3389
pending_outbound_htlcs : Vec :: new ( ) ,
3388
3390
}
@@ -8504,8 +8506,9 @@ pub(crate) mod bench_utils {
8504
8506
use crate :: chain:: transaction:: OutPoint ;
8505
8507
use crate :: routing:: scoring:: ScoreUpdate ;
8506
8508
use crate :: sign:: KeysManager ;
8509
+ use crate :: ln:: channel_state:: { ChannelCounterparty , ChannelShutdownState } ;
8510
+ use crate :: ln:: channelmanager;
8507
8511
use crate :: ln:: types:: ChannelId ;
8508
- use crate :: ln:: channelmanager:: { self , ChannelCounterparty } ;
8509
8512
use crate :: util:: config:: UserConfig ;
8510
8513
use crate :: util:: test_utils:: TestLogger ;
8511
8514
@@ -8590,7 +8593,7 @@ pub(crate) mod bench_utils {
8590
8593
inbound_htlc_maximum_msat : None ,
8591
8594
config : None ,
8592
8595
feerate_sat_per_1000_weight : None ,
8593
- channel_shutdown_state : Some ( channelmanager :: ChannelShutdownState :: NotShuttingDown ) ,
8596
+ channel_shutdown_state : Some ( ChannelShutdownState :: NotShuttingDown ) ,
8594
8597
pending_inbound_htlcs : Vec :: new ( ) ,
8595
8598
pending_outbound_htlcs : Vec :: new ( ) ,
8596
8599
}
0 commit comments