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 f6e5e8d commit ef1b075Copy full SHA for ef1b075
lightning/src/routing/network_graph.rs
@@ -1164,7 +1164,7 @@ impl NetworkGraph {
1164
return Err(LightningError{err: "channel_update is older than two weeks old".to_owned(), action: ErrorAction::IgnoreError});
1165
}
1166
if msg.timestamp as u64 > time + 60 * 60 * 24 {
1167
- return Err(LightningError{err: "channel_update is older than two weeks old".to_owned(), action: ErrorAction::IgnoreError});
+ return Err(LightningError{err: "channel_update has a timestamp a day in the future".to_owned(), action: ErrorAction::IgnoreError});
1168
1169
1170
0 commit comments