From: Valentine Wallace Date: Tue, 12 Sep 2023 19:01:53 +0000 (-0400) Subject: Remove trailing whitespace in get_route X-Git-Tag: v0.0.117-rc1~19^2~6 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=b16d6a1e11782c5194ba175a5d395fba752965af;p=rust-lightning Remove trailing whitespace in get_route Because my text editor loves to do that. --- diff --git a/lightning/src/routing/router.rs b/lightning/src/routing/router.rs index 53bd9243..b435c2e1 100644 --- a/lightning/src/routing/router.rs +++ b/lightning/src/routing/router.rs @@ -2888,7 +2888,7 @@ mod tests { Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes) { assert_eq!(err, "First hop cannot have our_node_pubkey as a destination."); } else { panic!(); } - + let route = get_route(&our_id, &route_params, &network_graph.read_only(), None, Arc::clone(&logger), &scorer, &Default::default(), &random_seed_bytes).unwrap(); assert_eq!(route.paths[0].hops.len(), 2);