From 9414830951c1e346dd6b4213567fa5bdd361e12d Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Mon, 2 Jan 2023 01:07:59 +0000 Subject: [PATCH] `#[derive(Clone)]` for `InFlightHtlcs` This is useful for bindings, and generally isn't a bad thing for users to have access to. --- lightning/src/routing/router.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lightning/src/routing/router.rs b/lightning/src/routing/router.rs index c1ef01bf..e60449e1 100644 --- a/lightning/src/routing/router.rs +++ b/lightning/src/routing/router.rs @@ -181,6 +181,7 @@ impl<'a, S: Score> Score for ScorerAccountingForInFlightHtlcs<'a, S> { /// A data structure for tracking in-flight HTLCs. May be used during pathfinding to account for /// in-use channel liquidity. +#[derive(Clone)] pub struct InFlightHtlcs( // A map with liquidity value (in msat) keyed by a short channel id and the direction the HTLC // is traveling in. The direction boolean is determined by checking if the HTLC source's public -- 2.30.2