Fix some new indentation nits 2020-05-592-nits
authorMatt Corallo <git@bluematt.me>
Tue, 12 May 2020 01:12:23 +0000 (21:12 -0400)
committerMatt Corallo <git@bluematt.me>
Tue, 12 May 2020 18:16:43 +0000 (14:16 -0400)
fuzz/src/router.rs
lightning/src/ln/functional_test_utils.rs
lightning/src/routing/network_graph.rs

index dbf5ad8858afc47ae6379df76fdd4e63a98a5542..f388399ab8ab3750e1c63566a89c0e06976f34d3 100644 (file)
@@ -221,7 +221,8 @@ pub fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
                                                        fees: RoutingFees {
                                                                base_msat: slice_to_be32(get_slice!(4)),
                                                                proportional_millionths: slice_to_be32(get_slice!(4)),
-                                                       },                                                      cltv_expiry_delta: slice_to_be16(get_slice!(2)),
+                                                       },
+                                                       cltv_expiry_delta: slice_to_be16(get_slice!(2)),
                                                        htlc_minimum_msat: slice_to_be64(get_slice!(8)),
                                                });
                                        }
index e4009cbf23302c37af5bdefb1b1a3b94da985bd9..4be866ffd3d1f359d9ce317a2a96e5da7395b6b1 100644 (file)
@@ -104,8 +104,8 @@ impl<'a, 'b, 'c> Drop for Node<'a, 'b, 'c> {
                                let network_graph_deser = <NetworkGraph>::read(&mut ::std::io::Cursor::new(&w.0)).unwrap();
                                assert!(network_graph_deser == *self.net_graph_msg_handler.network_graph.read().unwrap());
                                let net_graph_msg_handler = NetGraphMsgHandler::from_net_graph(
-                                  Arc::clone(&self.chain_monitor) as Arc<chaininterface::ChainWatchInterface>,
-                                  Arc::clone(&self.logger) as Arc<Logger>, RwLock::new(network_graph_deser)
+                                       Arc::clone(&self.chain_monitor) as Arc<chaininterface::ChainWatchInterface>,
+                                       Arc::clone(&self.logger) as Arc<Logger>, RwLock::new(network_graph_deser)
                                );
                                let mut chan_progress = 0;
                                loop {
index ab301bceeea1e37a02d34d80aa54b4cbe99d2897..fedfad79fe6381a408207b63c3c2d0638793d3fc 100644 (file)
@@ -311,10 +311,10 @@ impl Writeable for RoutingFees {
 /// 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.
        /// Value is opaque, as set in the announcement.
-      pub last_update: u32,
+       pub last_update: u32,
        /// Color assigned to the node
        pub rgb: [u8; 3],
        /// Moniker assigned to the node.
@@ -766,7 +766,7 @@ mod tests {
        use ln::features::{ChannelFeatures, NodeFeatures};
        use routing::network_graph::{NetGraphMsgHandler, NetworkGraph};
        use ln::msgs::{RoutingMessageHandler, UnsignedNodeAnnouncement, NodeAnnouncement,
-          UnsignedChannelAnnouncement, ChannelAnnouncement, UnsignedChannelUpdate, ChannelUpdate, HTLCFailChannelUpdate};
+               UnsignedChannelAnnouncement, ChannelAnnouncement, UnsignedChannelUpdate, ChannelUpdate, HTLCFailChannelUpdate};
        use util::test_utils;
        use util::logger::Logger;
        use util::ser::{Readable, Writeable};
@@ -845,7 +845,7 @@ mod tests {
                        // Announce a channel to add a corresponding node.
                        let unsigned_announcement = UnsignedChannelAnnouncement {
                                features: ChannelFeatures::known(),
-                               chain_hash: genesis_block(Network::Testnet).header.bitcoin_hash(),
+                               chain_hash: genesis_block(Network::Testnet).header.bitcoin_hash(),
                                short_channel_id: 0,
                                node_id_1,
                                node_id_2,