X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Futil%2Ftest_utils.rs;h=9b18f3bb0e43f01ac961cd89bdf8bfb7e05f8c85;hb=04425f9e14aa4870d196b55ef6313eb6ac6c0b72;hp=1ae28b40e371d1122528305881f57f9e3a813daa;hpb=2b7d097dc76805a814eef93b4610a9eebc68e20e;p=rust-lightning diff --git a/lightning/src/util/test_utils.rs b/lightning/src/util/test_utils.rs index 1ae28b40e..9b18f3bb0 100644 --- a/lightning/src/util/test_utils.rs +++ b/lightning/src/util/test_utils.rs @@ -171,7 +171,7 @@ impl<'a> Router for TestRouter<'a> { }; let candidate = CandidateRouteHop::PrivateHop { hint: &route_hint, - target_node_id: target_node_id, + target_node_id: &target_node_id, }; scorer.channel_penalty_msat(&candidate, usage, &()); } @@ -1349,13 +1349,13 @@ impl ScoreLookUp for TestScorer { } impl ScoreUpdate for TestScorer { - fn payment_path_failed(&mut self, _actual_path: &Path, _actual_short_channel_id: u64) {} + fn payment_path_failed(&mut self, _actual_path: &Path, _actual_short_channel_id: u64, _duration_since_epoch: Duration) {} - fn payment_path_successful(&mut self, _actual_path: &Path) {} + fn payment_path_successful(&mut self, _actual_path: &Path, _duration_since_epoch: Duration) {} - fn probe_failed(&mut self, _actual_path: &Path, _: u64) {} + fn probe_failed(&mut self, _actual_path: &Path, _: u64, _duration_since_epoch: Duration) {} - fn probe_successful(&mut self, _actual_path: &Path) {} + fn probe_successful(&mut self, _actual_path: &Path, _duration_since_epoch: Duration) {} } impl Drop for TestScorer {