From 9575b954d7404005c183303d3f34d9eae29a8bb0 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Tue, 28 Jun 2022 20:39:18 -0300 Subject: [PATCH 1/2] bolt7 typo: "newest" channel_update, not "oldest". --- 07-routing-gossip.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-routing-gossip.md b/07-routing-gossip.md index bbbab2b9f..6fb455c6d 100644 --- a/07-routing-gossip.md +++ b/07-routing-gossip.md @@ -987,7 +987,7 @@ A node: #### Requirements A node: - - if a channel's oldest `channel_update`s `timestamp` is older than two weeks + - if a channel's newest `channel_update`s `timestamp` is older than two weeks (1209600 seconds): - MAY prune the channel. - MAY ignore the channel. From 81cdeaa091c239b6e1103f7b7d949d04bad327b0 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Wed, 29 Jun 2022 08:53:17 -0300 Subject: [PATCH 2/2] "latest" instead of "newest" Co-authored-by: Bastien Teinturier <31281497+t-bast@users.noreply.github.com> --- 07-routing-gossip.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-routing-gossip.md b/07-routing-gossip.md index 6fb455c6d..d6799a279 100644 --- a/07-routing-gossip.md +++ b/07-routing-gossip.md @@ -987,7 +987,7 @@ A node: #### Requirements A node: - - if a channel's newest `channel_update`s `timestamp` is older than two weeks + - if a channel's latest `channel_update`s `timestamp` is older than two weeks (1209600 seconds): - MAY prune the channel. - MAY ignore the channel.