Force inlining source and target node id lookup in candidate hops
[rust-lightning] / lightning / src / routing / router.rs
index e847c001b167f7799cccae0bb356ae4324b7ec22..57efd9f7812d49c6c11ee5bdcacf079e610d0b39 100644 (file)
@@ -1260,7 +1260,7 @@ impl<'a> CandidateRouteHop<'a> {
        /// Source node id refers to the node forwarding the HTLC through this hop.
        ///
        /// For [`Self::FirstHop`] we return payer's node id.
-       #[inline]
+       #[inline(always)]
        pub fn source(&self) -> NodeId {
                match self {
                        CandidateRouteHop::FirstHop { payer_node_id, .. } => **payer_node_id,
@@ -1279,7 +1279,7 @@ impl<'a> CandidateRouteHop<'a> {
        ///
        /// For [`Self::OneHopBlinded`] we return `None` because the target is the same as the source,
        /// and such a return value would be somewhat nonsensical.
-       #[inline]
+       #[inline(always)]
        pub fn target(&self) -> Option<NodeId> {
                match self {
                        CandidateRouteHop::FirstHop { details, .. } => Some(details.counterparty.node_id.into()),