Remove NetGraphMsgHandler serialization
[rust-lightning] / lightning / src / routing / network_graph.rs
index ff13f87c6e56ab6924462181b6659cf21ac8a17d..add57c25c145ac9155ecebb0fca734c750d1997f 100644 (file)
@@ -13,7 +13,7 @@ use chain::chaininterface::{ChainError, ChainWatchInterface};
 use ln::features::{ChannelFeatures, NodeFeatures};
 use ln::msgs::{DecodeError,ErrorAction,LightningError,RoutingMessageHandler,NetAddress};
 use ln::msgs;
-use util::ser::{Writeable, Readable, Writer, ReadableArgs};
+use util::ser::{Writeable, Readable, Writer};
 use util::logger::Logger;
 
 use std::cmp;
@@ -34,7 +34,8 @@ pub struct NetGraphMsgHandler {
 }
 
 impl NetGraphMsgHandler {
-       /// Creates a new tracker of the actual state of the network of channels and nodes.
+       /// Creates a new tracker of the actual state of the network of channels and nodes,
+       /// assuming fresh Network Graph
        pub fn new(chain_monitor: Arc<ChainWatchInterface>, logger: Arc<Logger>) -> Self {
                NetGraphMsgHandler {
                        secp_ctx: Secp256k1::verification_only(),
@@ -48,10 +49,27 @@ impl NetGraphMsgHandler {
                }
        }
 
+       /// Creates a new tracker of the actual state of the network of channels and nodes,
+       /// assuming an existing Network Graph.
+       pub fn from_net_graph(chain_monitor: Arc<ChainWatchInterface>, logger: Arc<Logger>, network_graph: RwLock<NetworkGraph>) -> Self {
+               NetGraphMsgHandler {
+                       secp_ctx: Secp256k1::verification_only(),
+                       network_graph: network_graph,
+                       full_syncs_requested: AtomicUsize::new(0),
+                       chain_monitor,
+                       logger: logger.clone(),
+               }
+       }
+
        /// Get network addresses by node id
        pub fn get_addresses(&self, pubkey: &PublicKey) -> Option<Vec<NetAddress>> {
                let network = self.network_graph.read().unwrap();
-               network.get_nodes().get(pubkey).map(|n| n.addresses.clone())
+               if let Some(node) = network.get_nodes().get(pubkey) {
+                       if let Some(node_info) = node.announcement_info.as_ref() {
+                               return Some(node_info.addresses.clone())
+                       }
+               }
+               None
        }
 
        /// Dumps the entire network view of this NetGraphMsgHandler to the logger provided in the constructor at
@@ -136,9 +154,16 @@ impl RoutingMessageHandler for NetGraphMsgHandler {
                while result.len() < batch_amount as usize {
                        if let Some((_, ref chan)) = iter.next() {
                                if chan.announcement_message.is_some() {
-                                       result.push((chan.announcement_message.clone().unwrap(),
-                                               chan.one_to_two.last_update_message.clone(),
-                                               chan.two_to_one.last_update_message.clone()));
+                                       let chan_announcement = chan.announcement_message.clone().unwrap();
+                                       let mut one_to_two_announcement: Option<msgs::ChannelUpdate> = None;
+                                       let mut two_to_one_announcement: Option<msgs::ChannelUpdate> = None;
+                                       if let Some(one_to_two) = chan.one_to_two.as_ref() {
+                                               one_to_two_announcement = one_to_two.last_update_message.clone();
+                                       }
+                                       if let Some(two_to_one) = chan.two_to_one.as_ref() {
+                                               two_to_one_announcement = two_to_one.last_update_message.clone();
+                                       }
+                                       result.push((chan_announcement, one_to_two_announcement, two_to_one_announcement));
                                } else {
                                        // TODO: We may end up sending un-announced channel_updates if we are sending
                                        // initial sync data while receiving announce/updates for this channel.
@@ -162,8 +187,10 @@ impl RoutingMessageHandler for NetGraphMsgHandler {
                        };
                while result.len() < batch_amount as usize {
                        if let Some((_, ref node)) = iter.next() {
-                               if node.announcement_message.is_some() {
-                                       result.push(node.announcement_message.clone().unwrap());
+                               if let Some(node_info) = node.announcement_info.as_ref() {
+                                       if node_info.announcement_message.is_some() {
+                                               result.push(node_info.announcement_message.clone().unwrap());
+                                       }
                                }
                        } else {
                                return result;
@@ -184,58 +211,9 @@ impl RoutingMessageHandler for NetGraphMsgHandler {
        }
 }
 
-
-const SERIALIZATION_VERSION: u8 = 1;
-const MIN_SERIALIZATION_VERSION: u8 = 1;
-
-impl Writeable for NetGraphMsgHandler {
-       fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
-               writer.write_all(&[SERIALIZATION_VERSION; 1])?;
-               writer.write_all(&[MIN_SERIALIZATION_VERSION; 1])?;
-
-               let network = self.network_graph.read().unwrap();
-               network.write(writer)?;
-               Ok(())
-       }
-}
-
-/// Arguments for the creation of a NetGraphMsgHandler that are not deserialized.
-/// At a high-level, the process for deserializing a NetGraphMsgHandler and resuming normal operation is:
-/// 1) Deserialize the NetGraphMsgHandler by filling in this struct and calling <NetGraphMsgHandler>::read(reaser, args).
-/// 2) Register the new NetGraphMsgHandler with your ChainWatchInterface
-pub struct NetGraphMsgHandlerReadArgs {
-       /// The ChainWatchInterface for use in the NetGraphMsgHandler in the future.
-       ///
-       /// No calls to the ChainWatchInterface will be made during deserialization.
-       pub chain_monitor: Arc<ChainWatchInterface>,
-       /// The Logger for use in the ChannelManager and which may be used to log information during
-       /// deserialization.
-       pub logger: Arc<Logger>,
-}
-
-impl ReadableArgs<NetGraphMsgHandlerReadArgs> for NetGraphMsgHandler {
-       fn read<R: ::std::io::Read>(reader: &mut R, args: NetGraphMsgHandlerReadArgs) -> Result<NetGraphMsgHandler, DecodeError> {
-               let _ver: u8 = Readable::read(reader)?;
-               let min_ver: u8 = Readable::read(reader)?;
-               if min_ver > SERIALIZATION_VERSION {
-                       return Err(DecodeError::UnknownVersion);
-               }
-               let network_graph = Readable::read(reader)?;
-               Ok(NetGraphMsgHandler {
-                       secp_ctx: Secp256k1::verification_only(),
-                       network_graph: RwLock::new(network_graph),
-                       chain_monitor: args.chain_monitor,
-                       full_syncs_requested: AtomicUsize::new(0),
-                       logger: args.logger.clone(),
-               })
-       }
-}
-
-#[derive(PartialEq)]
+#[derive(PartialEq, Debug)]
 /// Details regarding one direction of a channel
 pub struct DirectionalChannelInfo {
-       /// A node from which the channel direction starts
-       pub src_node_id: PublicKey,
        /// When the last update to the channel direction was issued
        pub last_update: u32,
        /// Whether the channel can be currently used for payments
@@ -252,13 +230,12 @@ pub struct DirectionalChannelInfo {
 
 impl std::fmt::Display for DirectionalChannelInfo {
        fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
-               write!(f, "src_node_id {}, last_update {}, enabled {}, cltv_expiry_delta {}, htlc_minimum_msat {}, fees {:?}", log_pubkey!(self.src_node_id), self.last_update, self.enabled, self.cltv_expiry_delta, self.htlc_minimum_msat, self.fees)?;
+               write!(f, "last_update {}, enabled {}, cltv_expiry_delta {}, htlc_minimum_msat {}, fees {:?}", self.last_update, self.enabled, self.cltv_expiry_delta, self.htlc_minimum_msat, self.fees)?;
                Ok(())
        }
 }
 
 impl_writeable!(DirectionalChannelInfo, 0, {
-       src_node_id,
        last_update,
        enabled,
        cltv_expiry_delta,
@@ -272,10 +249,14 @@ impl_writeable!(DirectionalChannelInfo, 0, {
 pub struct ChannelInfo {
        /// Protocol features of a channel communicated during its announcement
        pub features: ChannelFeatures,
-       /// Details regarding one of the directions of a channel
-       pub one_to_two: DirectionalChannelInfo,
-       /// Details regarding another direction of a channel
-       pub two_to_one: DirectionalChannelInfo,
+       /// Source node of the first direction of a channel
+       pub node_one: PublicKey,
+       /// Details about the first direction of a channel
+       pub one_to_two: Option<DirectionalChannelInfo>,
+       /// Source node of the second direction of a channel
+       pub node_two: PublicKey,
+       /// Details about the second direction of a channel
+       pub two_to_one: Option<DirectionalChannelInfo>,
        /// An initial announcement of the channel
        //this is cached here so we can send out it later if required by initial routing sync
        //keep an eye on this to see if the extra memory is a problem
@@ -284,14 +265,17 @@ pub struct ChannelInfo {
 
 impl std::fmt::Display for ChannelInfo {
        fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
-               write!(f, "features: {}, one_to_two: {}, two_to_one: {}", log_bytes!(self.features.encode()), self.one_to_two, self.two_to_one)?;
+               write!(f, "features: {}, node_one: {}, one_to_two: {:?}, node_two: {}, two_to_one: {:?}",
+                  log_bytes!(self.features.encode()), log_pubkey!(self.node_one), self.one_to_two, log_pubkey!(self.node_two), self.two_to_one)?;
                Ok(())
        }
 }
 
 impl_writeable!(ChannelInfo, 0, {
        features,
+       node_one,
        one_to_two,
+       node_two,
        two_to_one,
        announcement_message
 });
@@ -325,21 +309,13 @@ impl Writeable for RoutingFees {
        }
 }
 
-
-#[derive(PartialEq)]
-/// Details regarding a node in the network
-pub struct NodeInfo {
-       /// All valid channels a node has announced
-       pub channels: Vec<u64>,
-       /// Lowest fees enabling routing via any of the known channels to a node
-       pub lowest_inbound_channel_fees: Option<RoutingFees>,
+#[derive(PartialEq, Debug)]
+/// Information received in the latest node_announcement from this node.
+pub struct NodeAnnouncementInfo {
        /// Protocol features the node announced support for
-       pub features: NodeFeatures,
+      pub features: NodeFeatures,
        /// When the last known update to the node state was issued
-       /// Unlike for channels, we may have a NodeInfo entry before having received a node_update.
-       /// Thus, we have to be able to capture "no update has been received", which we do with an
-       /// Option here.
-       pub last_update: Option<u32>,
+      pub last_update: u32,
        /// Color assigned to the node
        pub rgb: [u8; 3],
        /// Moniker assigned to the node
@@ -347,25 +323,13 @@ pub struct NodeInfo {
        /// Internet-level addresses via which one can connect to the node
        pub addresses: Vec<NetAddress>,
        /// An initial announcement of the node
-       //this is cached here so we can send out it later if required by initial routing sync
-       //keep an eye on this to see if the extra memory is a problem
-       pub announcement_message: Option<msgs::NodeAnnouncement>,
-}
-
-impl std::fmt::Display for NodeInfo {
-       fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
-               write!(f, "features: {}, last_update: {:?}, lowest_inbound_channel_fees: {:?}, channels: {:?}", log_bytes!(self.features.encode()), self.last_update, self.lowest_inbound_channel_fees, &self.channels[..])?;
-               Ok(())
-       }
+       // this is cached here so we can send out it later if required by initial routing sync
+       // keep an eye on this to see if the extra memory is a problem
+       pub announcement_message: Option<msgs::NodeAnnouncement>
 }
 
-impl Writeable for NodeInfo {
+impl Writeable for NodeAnnouncementInfo {
        fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
-               (self.channels.len() as u64).write(writer)?;
-               for ref chan in self.channels.iter() {
-                       chan.write(writer)?;
-               }
-               self.lowest_inbound_channel_fees.write(writer)?;
                self.features.write(writer)?;
                self.last_update.write(writer)?;
                self.rgb.write(writer)?;
@@ -379,16 +343,8 @@ impl Writeable for NodeInfo {
        }
 }
 
-const MAX_ALLOC_SIZE: u64 = 64*1024;
-
-impl Readable for NodeInfo {
-       fn read<R: ::std::io::Read>(reader: &mut R) -> Result<NodeInfo, DecodeError> {
-               let channels_count: u64 = Readable::read(reader)?;
-               let mut channels = Vec::with_capacity(cmp::min(channels_count, MAX_ALLOC_SIZE / 8) as usize);
-               for _ in 0..channels_count {
-                       channels.push(Readable::read(reader)?);
-               }
-               let lowest_inbound_channel_fees = Readable::read(reader)?;
+impl Readable for NodeAnnouncementInfo {
+       fn read<R: ::std::io::Read>(reader: &mut R) -> Result<NodeAnnouncementInfo, DecodeError> {
                let features = Readable::read(reader)?;
                let last_update = Readable::read(reader)?;
                let rgb = Readable::read(reader)?;
@@ -404,9 +360,7 @@ impl Readable for NodeInfo {
                        }
                }
                let announcement_message = Readable::read(reader)?;
-               Ok(NodeInfo {
-                       channels,
-                       lowest_inbound_channel_fees,
+               Ok(NodeAnnouncementInfo {
                        features,
                        last_update,
                        rgb,
@@ -417,6 +371,57 @@ impl Readable for NodeInfo {
        }
 }
 
+#[derive(PartialEq)]
+/// Details regarding a node in the network
+pub struct NodeInfo {
+       /// All valid channels a node has announced
+       pub channels: Vec<u64>,
+       /// Lowest fees enabling routing via any of the known channels to a node
+       pub lowest_inbound_channel_fees: Option<RoutingFees>,
+       /// More information about a node from node_announcement
+       /// Optional because we may have a NodeInfo entry before having received the announcement
+       pub announcement_info: Option<NodeAnnouncementInfo>
+}
+
+impl std::fmt::Display for NodeInfo {
+       fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
+               write!(f, "lowest_inbound_channel_fees: {:?}, channels: {:?}, announcement_info: {:?}",
+                  self.lowest_inbound_channel_fees, &self.channels[..], self.announcement_info)?;
+               Ok(())
+       }
+}
+
+impl Writeable for NodeInfo {
+       fn write<W: Writer>(&self, writer: &mut W) -> Result<(), ::std::io::Error> {
+               (self.channels.len() as u64).write(writer)?;
+               for ref chan in self.channels.iter() {
+                       chan.write(writer)?;
+               }
+               self.lowest_inbound_channel_fees.write(writer)?;
+               self.announcement_info.write(writer)?;
+               Ok(())
+       }
+}
+
+const MAX_ALLOC_SIZE: u64 = 64*1024;
+
+impl Readable for NodeInfo {
+       fn read<R: ::std::io::Read>(reader: &mut R) -> Result<NodeInfo, DecodeError> {
+               let channels_count: u64 = Readable::read(reader)?;
+               let mut channels = Vec::with_capacity(cmp::min(channels_count, MAX_ALLOC_SIZE / 8) as usize);
+               for _ in 0..channels_count {
+                       channels.push(Readable::read(reader)?);
+               }
+               let lowest_inbound_channel_fees = Readable::read(reader)?;
+               let announcement_info = Readable::read(reader)?;
+               Ok(NodeInfo {
+                       channels,
+                       lowest_inbound_channel_fees,
+                       announcement_info,
+               })
+       }
+}
+
 /// Represents the network as nodes and channels between them
 #[derive(PartialEq)]
 pub struct NetworkGraph {
@@ -494,21 +499,22 @@ impl NetworkGraph {
                match self.nodes.get_mut(&msg.contents.node_id) {
                        None => Err(LightningError{err: "No existing channels for node_announcement", action: ErrorAction::IgnoreError}),
                        Some(node) => {
-                               match node.last_update {
-                                       Some(last_update) => if last_update >= msg.contents.timestamp {
+                               if let Some(node_info) = node.announcement_info.as_ref() {
+                                       if node_info.last_update  >= msg.contents.timestamp {
                                                return Err(LightningError{err: "Update older than last processed update", action: ErrorAction::IgnoreError});
-                                       },
-                                       None => {},
+                                       }
                                }
 
-                               node.features = msg.contents.features.clone();
-                               node.last_update = Some(msg.contents.timestamp);
-                               node.rgb = msg.contents.rgb;
-                               node.alias = msg.contents.alias;
-                               node.addresses = msg.contents.addresses.clone();
-
                                let should_relay = msg.contents.excess_data.is_empty() && msg.contents.excess_address_data.is_empty();
-                               node.announcement_message = if should_relay { Some(msg.clone()) } else { None };
+                               node.announcement_info = Some(NodeAnnouncementInfo {
+                                       features: msg.contents.features.clone(),
+                                       last_update: msg.contents.timestamp,
+                                       rgb: msg.contents.rgb,
+                                       alias: msg.contents.alias,
+                                       addresses: msg.contents.addresses.clone(),
+                                       announcement_message: if should_relay { Some(msg.clone()) } else { None },
+                               });
+
                                Ok(should_relay)
                        }
                }
@@ -531,30 +537,10 @@ impl NetworkGraph {
 
                let chan_info = ChannelInfo {
                                features: msg.contents.features.clone(),
-                               one_to_two: DirectionalChannelInfo {
-                                       src_node_id: msg.contents.node_id_1.clone(),
-                                       last_update: 0,
-                                       enabled: false,
-                                       cltv_expiry_delta: u16::max_value(),
-                                       htlc_minimum_msat: u64::max_value(),
-                                       fees: RoutingFees {
-                                               base_msat: u32::max_value(),
-                                               proportional_millionths: u32::max_value(),
-                                       },
-                                       last_update_message: None,
-                               },
-                               two_to_one: DirectionalChannelInfo {
-                                       src_node_id: msg.contents.node_id_2.clone(),
-                                       last_update: 0,
-                                       enabled: false,
-                                       cltv_expiry_delta: u16::max_value(),
-                                       htlc_minimum_msat: u64::max_value(),
-                                       fees: RoutingFees {
-                                               base_msat: u32::max_value(),
-                                               proportional_millionths: u32::max_value(),
-                                       },
-                                       last_update_message: None,
-                               },
+                               node_one: msg.contents.node_id_1.clone(),
+                               one_to_two: None,
+                               node_two: msg.contents.node_id_2.clone(),
+                               two_to_one: None,
                                announcement_message: if should_relay { Some(msg.clone()) } else { None },
                        };
 
@@ -593,12 +579,7 @@ impl NetworkGraph {
                                                node_entry.insert(NodeInfo {
                                                        channels: vec!(msg.contents.short_channel_id),
                                                        lowest_inbound_channel_fees: None,
-                                                       features: NodeFeatures::empty(),
-                                                       last_update: None,
-                                                       rgb: [0; 3],
-                                                       alias: [0; 32],
-                                                       addresses: Vec::new(),
-                                                       announcement_message: None,
+                                                       announcement_info: None,
                                                });
                                        }
                                }
@@ -622,8 +603,12 @@ impl NetworkGraph {
                        }
                } else {
                        if let Some(chan) = self.channels.get_mut(&short_channel_id) {
-                               chan.one_to_two.enabled = false;
-                               chan.two_to_one.enabled = false;
+                               if let Some(one_to_two) = chan.one_to_two.as_mut() {
+                                       one_to_two.enabled = false;
+                               }
+                               if let Some(two_to_one) = chan.two_to_one.as_mut() {
+                                       two_to_one.enabled = false;
+                               }
                        }
                }
        }
@@ -647,37 +632,50 @@ impl NetworkGraph {
                        None => return Err(LightningError{err: "Couldn't find channel for update", action: ErrorAction::IgnoreError}),
                        Some(channel) => {
                                macro_rules! maybe_update_channel_info {
-                                       ( $target: expr) => {
-                                               if $target.last_update >= msg.contents.timestamp {
-                                                       return Err(LightningError{err: "Update older than last processed update", action: ErrorAction::IgnoreError});
+                                       ( $target: expr, $src_node: expr) => {
+                                               if let Some(existing_chan_info) = $target.as_ref() {
+                                                       if existing_chan_info.last_update >= msg.contents.timestamp {
+                                                               return Err(LightningError{err: "Update older than last processed update", action: ErrorAction::IgnoreError});
+                                                       }
+                                                       chan_was_enabled = existing_chan_info.enabled;
+                                               } else {
+                                                       chan_was_enabled = false;
                                                }
-                                               chan_was_enabled = $target.enabled;
-                                               $target.last_update = msg.contents.timestamp;
-                                               $target.enabled = chan_enabled;
-                                               $target.cltv_expiry_delta = msg.contents.cltv_expiry_delta;
-                                               $target.htlc_minimum_msat = msg.contents.htlc_minimum_msat;
-                                               $target.fees.base_msat = msg.contents.fee_base_msat;
-                                               $target.fees.proportional_millionths = msg.contents.fee_proportional_millionths;
-                                               $target.last_update_message = if msg.contents.excess_data.is_empty() {
+
+                                               let last_update_message = if msg.contents.excess_data.is_empty() {
                                                        Some(msg.clone())
                                                } else {
                                                        None
                                                };
+
+                                               let updated_channel_dir_info = DirectionalChannelInfo {
+                                                       enabled: chan_enabled,
+                                                       last_update: msg.contents.timestamp,
+                                                       cltv_expiry_delta: msg.contents.cltv_expiry_delta,
+                                                       htlc_minimum_msat: msg.contents.htlc_minimum_msat,
+                                                       fees: RoutingFees {
+                                                               base_msat: msg.contents.fee_base_msat,
+                                                               proportional_millionths: msg.contents.fee_proportional_millionths,
+                                                       },
+                                                       last_update_message
+                                               };
+                                               $target = Some(updated_channel_dir_info);
                                        }
                                }
+
                                let msg_hash = hash_to_message!(&Sha256dHash::hash(&msg.contents.encode()[..])[..]);
                                if msg.contents.flags & 1 == 1 {
-                                       dest_node_id = channel.one_to_two.src_node_id.clone();
+                                       dest_node_id = channel.node_one.clone();
                                        if let Some(sig_verifier) = secp_ctx {
-                                               secp_verify_sig!(sig_verifier, &msg_hash, &msg.signature, &channel.two_to_one.src_node_id);
+                                               secp_verify_sig!(sig_verifier, &msg_hash, &msg.signature, &channel.node_two);
                                        }
-                                       maybe_update_channel_info!(channel.two_to_one);
+                                       maybe_update_channel_info!(channel.two_to_one, channel.node_two);
                                } else {
-                                       dest_node_id = channel.two_to_one.src_node_id.clone();
+                                       dest_node_id = channel.node_two.clone();
                                        if let Some(sig_verifier) = secp_ctx {
-                                               secp_verify_sig!(sig_verifier, &msg_hash, &msg.signature, &channel.one_to_two.src_node_id);
+                                               secp_verify_sig!(sig_verifier, &msg_hash, &msg.signature, &channel.node_one);
                                        }
-                                       maybe_update_channel_info!(channel.one_to_two);
+                                       maybe_update_channel_info!(channel.one_to_two, channel.node_one);
                                }
                        }
                }
@@ -703,13 +701,15 @@ impl NetworkGraph {
 
                                for chan_id in node.channels.iter() {
                                        let chan = self.channels.get(chan_id).unwrap();
-                                       if chan.one_to_two.src_node_id == dest_node_id {
-                                               lowest_inbound_channel_fee_base_msat = cmp::min(lowest_inbound_channel_fee_base_msat, chan.two_to_one.fees.base_msat);
-                                               lowest_inbound_channel_fee_proportional_millionths = cmp::min(lowest_inbound_channel_fee_proportional_millionths, chan.two_to_one.fees.proportional_millionths);
+                                       // Since direction was enabled, the channel indeed had directional info
+                                       let chan_info;
+                                       if chan.node_one == dest_node_id {
+                                               chan_info = chan.two_to_one.as_ref().unwrap();
                                        } else {
-                                               lowest_inbound_channel_fee_base_msat = cmp::min(lowest_inbound_channel_fee_base_msat, chan.one_to_two.fees.base_msat);
-                                               lowest_inbound_channel_fee_proportional_millionths = cmp::min(lowest_inbound_channel_fee_proportional_millionths, chan.one_to_two.fees.proportional_millionths);
+                                               chan_info = chan.one_to_two.as_ref().unwrap();
                                        }
+                                       lowest_inbound_channel_fee_base_msat = cmp::min(lowest_inbound_channel_fee_base_msat, chan_info.fees.base_msat);
+                                       lowest_inbound_channel_fee_proportional_millionths = cmp::min(lowest_inbound_channel_fee_proportional_millionths, chan_info.fees.proportional_millionths);
                                }
                        }
 
@@ -741,8 +741,9 @@ impl NetworkGraph {
                                }
                        }
                }
-               remove_from_node!(chan.one_to_two.src_node_id);
-               remove_from_node!(chan.two_to_one.src_node_id);
+
+               remove_from_node!(chan.node_one);
+               remove_from_node!(chan.node_two);
        }
 }
 
@@ -1153,8 +1154,8 @@ mod tests {
                        match network.get_channels().get(&short_channel_id) {
                                None => panic!(),
                                Some(channel_info) => {
-                                       assert_eq!(channel_info.one_to_two.cltv_expiry_delta, 144);
-                                       assert_eq!(channel_info.two_to_one.cltv_expiry_delta, u16::max_value());
+                                       assert_eq!(channel_info.one_to_two.as_ref().unwrap().cltv_expiry_delta, 144);
+                                       assert!(channel_info.two_to_one.is_none());
                                }
                        }
                }
@@ -1259,6 +1260,38 @@ mod tests {
                                Err(_) => panic!()
                        };
 
+                       let unsigned_channel_update = UnsignedChannelUpdate {
+                               chain_hash,
+                               short_channel_id,
+                               timestamp: 100,
+                               flags: 0,
+                               cltv_expiry_delta: 144,
+                               htlc_minimum_msat: 1000000,
+                               fee_base_msat: 10000,
+                               fee_proportional_millionths: 20,
+                               excess_data: Vec::new()
+                       };
+                       let msghash = hash_to_message!(&Sha256dHash::hash(&unsigned_channel_update.encode()[..])[..]);
+                       let valid_channel_update = ChannelUpdate {
+                               signature: secp_ctx.sign(&msghash, node_1_privkey),
+                               contents: unsigned_channel_update.clone()
+                       };
+
+                       match net_graph_msg_handler.handle_channel_update(&valid_channel_update) {
+                               Ok(res) => assert!(res),
+                               _ => panic!()
+                       };
+               }
+
+               // Non-permanent closing just disables a channel
+               {
+                       let network = net_graph_msg_handler.network_graph.read().unwrap();
+                       match network.get_channels().get(&short_channel_id) {
+                               None => panic!(),
+                               Some(channel_info) => {
+                                       assert!(channel_info.one_to_two.is_some());
+                               }
+                       }
                }
 
                let channel_close_msg = HTLCFailChannelUpdate::ChannelClosed {
@@ -1274,8 +1307,7 @@ mod tests {
                        match network.get_channels().get(&short_channel_id) {
                                None => panic!(),
                                Some(channel_info) => {
-                                       assert!(!channel_info.one_to_two.enabled);
-                                       assert!(!channel_info.two_to_one.enabled);
+                                       assert!(!channel_info.one_to_two.as_ref().unwrap().enabled);
                                }
                        }
                }