Skip to content

Commit f47f199

Browse files
committed
Move the public path for channel_state types to their new path
1 parent 0dd01ee commit f47f199

File tree

9 files changed

+23
-17
lines changed

9 files changed

+23
-17
lines changed

lightning-invoice/src/utils.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ use lightning::chain;
99
use lightning::chain::chaininterface::{BroadcasterInterface, FeeEstimator};
1010
use lightning::sign::{Recipient, NodeSigner, SignerProvider, EntropySource};
1111
use lightning::ln::types::{PaymentHash, PaymentSecret};
12-
use lightning::ln::channelmanager::{ChannelDetails, ChannelManager, MIN_FINAL_CLTV_EXPIRY_DELTA};
12+
use lightning::ln::channel_state::ChannelDetails;
13+
use lightning::ln::channelmanager::{ChannelManager, MIN_FINAL_CLTV_EXPIRY_DELTA};
1314
use lightning::ln::channelmanager::{PhantomRouteHints, MIN_CLTV_EXPIRY_DELTA};
1415
use lightning::ln::inbound_payment::{create, create_from_hash, ExpandedKey};
1516
use lightning::routing::gossip::RoutingFees;

lightning/src/blinded_path/payment.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use crate::blinded_path::BlindedHop;
1717
use crate::blinded_path::utils;
1818
use crate::io;
1919
use crate::ln::types::PaymentSecret;
20-
use crate::ln::channelmanager::CounterpartyForwardingInfo;
20+
use crate::ln::channel_state::CounterpartyForwardingInfo;
2121
use crate::ln::features::BlindedHopFeatures;
2222
use crate::ln::msgs::DecodeError;
2323
use crate::offers::invoice::BlindedPayInfo;

lightning/src/chain/chainmonitor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use crate::events::{Event, EventHandler};
3838
use crate::util::logger::{Logger, WithContext};
3939
use crate::util::errors::APIError;
4040
use crate::util::wakers::{Future, Notifier};
41-
use crate::ln::channelmanager::ChannelDetails;
41+
use crate::ln::channel_state::ChannelDetails;
4242

4343
use crate::prelude::*;
4444
use crate::sync::{RwLock, RwLockReadGuard, Mutex, MutexGuard};

lightning/src/ln/channel.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ use crate::ln::features::{ChannelTypeFeatures, InitFeatures};
3030
use crate::ln::msgs;
3131
use crate::ln::msgs::DecodeError;
3232
use crate::ln::script::{self, ShutdownScript};
33-
use crate::ln::channel_state::{CounterpartyForwardingInfo, InboundHTLCDetails, InboundHTLCStateDetails, OutboundHTLCDetails, OutboundHTLCStateDetails};
34-
use crate::ln::channelmanager::{self, PendingHTLCStatus, HTLCSource, SentHTLCId, HTLCFailureMsg, PendingHTLCInfo, RAACommitmentOrder, BREAKDOWN_TIMEOUT, MIN_CLTV_EXPIRY_DELTA, MAX_LOCAL_BREAKDOWN_TIMEOUT, ChannelShutdownState};
33+
use crate::ln::channel_state::{ChannelShutdownState, CounterpartyForwardingInfo, InboundHTLCDetails, InboundHTLCStateDetails, OutboundHTLCDetails, OutboundHTLCStateDetails};
34+
use crate::ln::channelmanager::{self, PendingHTLCStatus, HTLCSource, SentHTLCId, HTLCFailureMsg, PendingHTLCInfo, RAACommitmentOrder, BREAKDOWN_TIMEOUT, MIN_CLTV_EXPIRY_DELTA, MAX_LOCAL_BREAKDOWN_TIMEOUT};
3535
use crate::ln::chan_utils::{CounterpartyCommitmentSecrets, TxCreationKeys, HTLCOutputInCommitment, htlc_success_tx_weight, htlc_timeout_tx_weight, make_funding_redeemscript, ChannelPublicKeys, CommitmentTransaction, HolderCommitmentTransaction, ChannelTransactionParameters, CounterpartyChannelTransactionParameters, MAX_HTLCS, get_commitment_transaction_number_obscure_factor, ClosingTransaction};
3636
use crate::ln::chan_utils;
3737
use crate::ln::onion_utils::HTLCFailReason;

lightning/src/ln/channelmanager.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ use crate::events::{Event, EventHandler, EventsProvider, MessageSendEvent, Messa
4646
use crate::ln::inbound_payment;
4747
use crate::ln::types::{ChannelId, PaymentHash, PaymentPreimage, PaymentSecret};
4848
use crate::ln::channel::{self, Channel, ChannelPhase, ChannelContext, ChannelError, ChannelUpdateStatus, ShutdownResult, UnfundedChannelContext, UpdateFulfillCommitFetch, OutboundV1Channel, InboundV1Channel, WithChannelContext};
49-
pub use crate::ln::channel_state::{ChannelCounterparty, ChannelDetails, ChannelShutdownState, CounterpartyForwardingInfo};
50-
pub use crate::ln::channel_state::{InboundHTLCDetails, InboundHTLCStateDetails, OutboundHTLCDetails, OutboundHTLCStateDetails};
49+
use crate::ln::channel_state::{ChannelCounterparty, ChannelDetails, ChannelShutdownState, CounterpartyForwardingInfo};
5150
use crate::ln::features::{Bolt12InvoiceFeatures, ChannelFeatures, ChannelTypeFeatures, InitFeatures, NodeFeatures};
5251
#[cfg(any(feature = "_test_utils", test))]
5352
use crate::ln::features::Bolt11InvoiceFeatures;

lightning/src/ln/outbound_payment.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ use bitcoin::secp256k1::{self, Secp256k1, SecretKey};
1616
use crate::sign::{EntropySource, NodeSigner, Recipient};
1717
use crate::events::{self, PaymentFailureReason};
1818
use crate::ln::types::{PaymentHash, PaymentPreimage, PaymentSecret};
19-
use crate::ln::channelmanager::{ChannelDetails, EventCompletionAction, HTLCSource, PaymentId};
19+
use crate::ln::channel_state::ChannelDetails;
20+
use crate::ln::channelmanager::{EventCompletionAction, HTLCSource, PaymentId};
2021
use crate::ln::onion_utils;
2122
use crate::ln::onion_utils::{DecodedOnionFailure, HTLCFailReason};
2223
use crate::offers::invoice::Bolt12Invoice;

lightning/src/ln/shutdown_tests.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ use crate::sign::{EntropySource, SignerProvider};
1414
use crate::chain::ChannelMonitorUpdateStatus;
1515
use crate::chain::transaction::OutPoint;
1616
use crate::events::{Event, MessageSendEvent, HTLCDestination, MessageSendEventsProvider, ClosureReason};
17-
use crate::ln::channelmanager::{self, PaymentSendFailure, PaymentId, RecipientOnionFields, Retry, ChannelShutdownState, ChannelDetails};
17+
use crate::ln::channel_state::{ChannelDetails, ChannelShutdownState};
18+
use crate::ln::channelmanager::{self, PaymentSendFailure, PaymentId, RecipientOnionFields, Retry};
1819
use crate::routing::router::{PaymentParameters, get_route, RouteParameters};
1920
use crate::ln::msgs;
2021
use crate::ln::types::ChannelId;

lightning/src/routing/router.rs

+10-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ use crate::blinded_path::{BlindedHop, BlindedPath, Direction, IntroductionNode};
1515
use crate::blinded_path::message;
1616
use crate::blinded_path::payment::{ForwardTlvs, PaymentConstraints, PaymentRelay, ReceiveTlvs, self};
1717
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};
1920
use crate::ln::features::{BlindedHopFeatures, Bolt11InvoiceFeatures, Bolt12InvoiceFeatures, ChannelFeatures, NodeFeatures};
2021
use crate::ln::msgs::{DecodeError, ErrorAction, LightningError, MAX_VALUE_MSAT};
2122
use crate::ln::onion_utils;
@@ -3321,6 +3322,7 @@ mod tests {
33213322
use crate::routing::test_utils::{add_channel, add_or_update_node, build_graph, build_line_graph, id_to_feature_flags, get_nodes, update_channel};
33223323
use crate::chain::transaction::OutPoint;
33233324
use crate::sign::EntropySource;
3325+
use crate::ln::channel_state::{ChannelCounterparty, ChannelDetails, ChannelShutdownState};
33243326
use crate::ln::types::ChannelId;
33253327
use crate::ln::features::{BlindedHopFeatures, ChannelFeatures, InitFeatures, NodeFeatures};
33263328
use crate::ln::msgs::{ErrorAction, LightningError, UnsignedChannelUpdate, MAX_VALUE_MSAT};
@@ -3349,10 +3351,10 @@ mod tests {
33493351
use crate::sync::Arc;
33503352

33513353
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 {
33543356
channel_id: ChannelId::new_zero(),
3355-
counterparty: channelmanager::ChannelCounterparty {
3357+
counterparty: ChannelCounterparty {
33563358
features,
33573359
node_id,
33583360
unspendable_punishment_reserve: 0,
@@ -3382,7 +3384,7 @@ mod tests {
33823384
inbound_htlc_maximum_msat: None,
33833385
config: None,
33843386
feerate_sat_per_1000_weight: None,
3385-
channel_shutdown_state: Some(channelmanager::ChannelShutdownState::NotShuttingDown),
3387+
channel_shutdown_state: Some(ChannelShutdownState::NotShuttingDown),
33863388
pending_inbound_htlcs: Vec::new(),
33873389
pending_outbound_htlcs: Vec::new(),
33883390
}
@@ -8504,8 +8506,9 @@ pub(crate) mod bench_utils {
85048506
use crate::chain::transaction::OutPoint;
85058507
use crate::routing::scoring::ScoreUpdate;
85068508
use crate::sign::KeysManager;
8509+
use crate::ln::channel_state::{ChannelCounterparty, ChannelShutdownState};
8510+
use crate::ln::channelmanager;
85078511
use crate::ln::types::ChannelId;
8508-
use crate::ln::channelmanager::{self, ChannelCounterparty};
85098512
use crate::util::config::UserConfig;
85108513
use crate::util::test_utils::TestLogger;
85118514

@@ -8590,7 +8593,7 @@ pub(crate) mod bench_utils {
85908593
inbound_htlc_maximum_msat: None,
85918594
config: None,
85928595
feerate_sat_per_1000_weight: None,
8593-
channel_shutdown_state: Some(channelmanager::ChannelShutdownState::NotShuttingDown),
8596+
channel_shutdown_state: Some(ChannelShutdownState::NotShuttingDown),
85948597
pending_inbound_htlcs: Vec::new(),
85958598
pending_outbound_htlcs: Vec::new(),
85968599
}

lightning/src/util/test_utils.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ use crate::sign;
2525
use crate::events;
2626
use crate::events::bump_transaction::{WalletSource, Utxo};
2727
use crate::ln::types::ChannelId;
28-
use crate::ln::channelmanager::{ChannelDetails, self};
28+
use crate::ln::channel_state::ChannelDetails;
29+
use crate::ln::channelmanager;
2930
#[cfg(test)]
3031
use crate::ln::chan_utils::CommitmentTransaction;
3132
use crate::ln::features::{ChannelFeatures, InitFeatures, NodeFeatures};

0 commit comments

Comments
 (0)