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 b80276e commit 846b533Copy full SHA for 846b533
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