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 770c267 commit 1e84de9Copy full SHA for 1e84de9
lightning/src/routing/network_graph.rs
@@ -1158,7 +1158,7 @@ impl NetworkGraph {
1158
return Err(LightningError{err: "channel_update is older than two weeks old".to_owned(), action: ErrorAction::IgnoreError});
1159
}
1160
if msg.timestamp as u64 > time + 60 * 60 * 24 {
1161
- 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});
1162
1163
1164
0 commit comments