Remove redundant `claiming_channel_id` variable
[rust-lightning] / lightning / src / routing / utxo.rs
index e190d4258ae4c6b862ad13135eaf1d656fab32f9..ada90345ee6861ac53a7d81191ea04bfe93a508d 100644 (file)
@@ -307,7 +307,7 @@ pub(super) struct PendingChecks {
 impl PendingChecks {
        pub(super) fn new() -> Self {
                PendingChecks { internal: Mutex::new(PendingChecksContext {
-                       channels: HashMap::new(), nodes: HashMap::new(),
+                       channels: new_hash_map(), nodes: new_hash_map(),
                }) }
        }