We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da01479 commit 78023d6Copy full SHA for 78023d6
src/ln/router.rs
@@ -433,7 +433,7 @@ impl Router {
433
($directional_info.fee_base_msat as u64).checked_add(part / 1000000) })
434
{
435
let mut total_fee = $starting_fee_msat as u64;
436
- let mut hm_entry = dist.entry(&$directional_info.src_node_id);
+ let hm_entry = dist.entry(&$directional_info.src_node_id);
437
let old_entry = hm_entry.or_insert_with(|| {
438
let node = network.nodes.get(&$directional_info.src_node_id).unwrap();
439
(u64::max_value(),
0 commit comments