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 d1d2b3b commit e11e543Copy full SHA for e11e543
lightning/src/routing/network_graph.rs
@@ -1157,7 +1157,7 @@ impl NetworkGraph {
1157
return Err(LightningError{err: "channel_update is older than two weeks old".to_owned(), action: ErrorAction::IgnoreError});
1158
}
1159
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});
+ return Err(LightningError{err: "channel_update has a timestamp more than a day in the future".to_owned(), action: ErrorAction::IgnoreError});
1161
1162
1163
0 commit comments