Skip to content

Commit e74888d

Browse files
committed
f sp
1 parent 33cebe0 commit e74888d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/routing/scoring.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1181,7 +1181,7 @@ impl<T: Time> Readable for ChannelLiquidity<T> {
11811181
// Because we write `last_updated` as wallclock time when we were written and create an
11821182
// `Instant` which represents that wallclock time, we may hit that panic if wallclock time
11831183
// is before when we were written. Thus, we check if we'd end up with a time in the future
1184-
// and just use `now` instead to avoid panicing later.
1184+
// and just use `now` instead to avoid panicking later.
11851185
let wall_clock_now = T::duration_since_epoch();
11861186
let now = T::now();
11871187
let last_updated = if wall_clock_now > duration_since_epoch {

0 commit comments

Comments
 (0)