Skip to content

Commit 7d6b109

Browse files
committed
Remove pub visibility of InFlightHtlcs HashMap
1 parent 342b78b commit 7d6b109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/routing/router.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub trait Router {
4545
#[cfg(not(any(test, feature = "_test_utils")))]
4646
pub struct InFlightHtlcs(HashMap<(u64, bool), u64>);
4747
#[cfg(any(test, feature = "_test_utils"))]
48-
pub struct InFlightHtlcs(pub HashMap<(u64, bool), u64>);
48+
pub struct InFlightHtlcs(HashMap<(u64, bool), u64>);
4949

5050
impl InFlightHtlcs {
5151
/// Constructs an empty `InFlightHtlcs`.

0 commit comments

Comments
 (0)