Skip to content

Commit 7a7b154

Browse files
committed
v0.8.2.1: remove option_large_channels from channel_announcement.
This is the minimal fix for #3703 but since it's a compatibility break, I propose a point release. You only need this if you're using `large-channels` (aka `wumbo`) option. Signed-off-by: Rusty Russell <[email protected]>
1 parent 6770382 commit 7a7b154

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [0.8.2.1] - 2020-05-08: "A Scalable Ethereum Blockchain"
9+
10+
0.8.2.1 is a recommended upgrade from 0.8.2 only if you use `large-channels`.
11+
12+
### Fixed
13+
14+
- `large-channels` now works with Eclair. (Based on [3612](https://github.com/ElementsProject/lightning/pull/3712))
15+
816
## [0.8.2] - 2020-04-30: "A Scalable Ethereum Blockchain"
917

1018
This release was named by @arowser.
@@ -712,6 +720,7 @@ There predate the BOLT specifications, and are only of vague historic interest:
712720
6. [0.5.1] - 2016-10-21
713721
7. [0.5.2] - 2016-11-21: "Bitcoin Savings & Trust Daily Interest II"
714722

723+
[0.8.2.1]: https://github.com/ElementsProject/lightning/releases/tag/v0.8.2.1
715724
[0.8.2]: https://github.com/ElementsProject/lightning/releases/tag/v0.8.2
716725
[0.8.1]: https://github.com/ElementsProject/lightning/releases/tag/v0.8.1
717726
[0.8.0]: https://github.com/ElementsProject/lightning/releases/tag/v0.8.0

common/features.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ static const struct feature_style feature_styles[] = {
6262
[BOLT11_FEATURE] = FEATURE_REPRESENT } },
6363
{ OPT_LARGE_CHANNELS,
6464
.copy_style = { [INIT_FEATURE] = FEATURE_REPRESENT,
65-
[NODE_ANNOUNCE_FEATURE] = FEATURE_REPRESENT,
66-
[CHANNEL_FEATURE] = FEATURE_REPRESENT_AS_OPTIONAL } },
65+
[NODE_ANNOUNCE_FEATURE] = FEATURE_REPRESENT } },
6766
#if EXPERIMENTAL_FEATURES
6867
{ OPT_ONION_MESSAGES,
6968
.copy_style = { [INIT_FEATURE] = FEATURE_REPRESENT,

0 commit comments

Comments
 (0)