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 414c7c2 commit 8a3fd3dCopy full SHA for 8a3fd3d
lightning/src/routing/network_graph.rs
@@ -1154,7 +1154,7 @@ impl NetworkGraph {
1154
return Err(LightningError{err: "channel_update is older than two weeks old".to_owned(), action: ErrorAction::IgnoreError});
1155
}
1156
if msg.timestamp as u64 > time + 60 * 60 * 24 {
1157
- 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});
1158
1159
1160
0 commit comments