Skip to content

Commit e11e543

Browse files
committed
f err message
1 parent d1d2b3b commit e11e543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/routing/network_graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ impl NetworkGraph {
11571157
return Err(LightningError{err: "channel_update is older than two weeks old".to_owned(), action: ErrorAction::IgnoreError});
11581158
}
11591159
if msg.timestamp as u64 > time + 60 * 60 * 24 {
1160-
return Err(LightningError{err: "channel_update has a timestamp a day in the future".to_owned(), action: ErrorAction::IgnoreError});
1160+
return Err(LightningError{err: "channel_update has a timestamp more than a day in the future".to_owned(), action: ErrorAction::IgnoreError});
11611161
}
11621162
}
11631163

0 commit comments

Comments
 (0)