Skip to content

Commit 67170e7

Browse files
committed
f debug
1 parent 3bf2b69 commit 67170e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/util/indexed_map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use core::ops::RangeBounds;
1919
/// Thus, we have a custom data structure here - its API mimics that of Rust's `BTreeMap`, but is
2020
/// actually backed by a [`HashMap`], with some additional tracking to ensure we can iterate over
2121
/// keys in the order defined by [`Ord`].
22-
#[derive(Clone, PartialEq, Eq)]
22+
#[derive(Clone, Debug, PartialEq, Eq)]
2323
pub struct IndexedMap<K: Hash + Ord, V> {
2424
map: HashMap<K, V>,
2525
// TODO: Explore swapping this for a sorted vec (that is only sorted on first range() call)

0 commit comments

Comments
 (0)