]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Combine import statements
authorJeffrey Czyz <jkczyz@gmail.com>
Mon, 28 Oct 2024 20:54:01 +0000 (15:54 -0500)
committerJeffrey Czyz <jkczyz@gmail.com>
Wed, 6 Nov 2024 18:04:15 +0000 (12:04 -0600)
lightning/src/ln/invoice_utils.rs

index 06f8a76e0459178cfc4483abdef6c2a4e39addf7..1cccb69f48ff6fc1c51e4e779462e0992e1b15a4 100644 (file)
@@ -11,8 +11,7 @@ use crate::chain::chaininterface::{BroadcasterInterface, FeeEstimator};
 use crate::sign::{Recipient, NodeSigner, SignerProvider, EntropySource};
 use crate::types::payment::{PaymentHash, PaymentSecret};
 use crate::ln::channel_state::ChannelDetails;
-use crate::ln::channelmanager::{ChannelManager, MIN_FINAL_CLTV_EXPIRY_DELTA};
-use crate::ln::channelmanager::{PhantomRouteHints, MIN_CLTV_EXPIRY_DELTA};
+use crate::ln::channelmanager::{ChannelManager, PhantomRouteHints, MIN_CLTV_EXPIRY_DELTA, MIN_FINAL_CLTV_EXPIRY_DELTA};
 use crate::ln::inbound_payment::{create, create_from_hash, ExpandedKey};
 use crate::routing::gossip::RoutingFees;
 use crate::routing::router::{RouteHint, RouteHintHop, Router};