Skip to content

Commit 58d0ca3

Browse files
committed
f no reason for the extra check
1 parent c013478 commit 58d0ca3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lightning/src/chain/package.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,8 +1030,7 @@ impl PackageTemplate {
10301030
// We should apply a smart heuristic here based on the HTLCs in the commitment
10311031
// transaction, but we don't currently have that information available so
10321032
// instead we just bump once per block.
1033-
height_timer =
1034-
cmp::min(height_timer, current_height + HIGH_FREQUENCY_BUMP_INTERVAL);
1033+
height_timer = current_height + HIGH_FREQUENCY_BUMP_INTERVAL;
10351034
},
10361035
}
10371036
}

0 commit comments

Comments
 (0)