Skip to content

Commit e80d632

Browse files
authored
Merge pull request #3362 from TheBlueMatt/2024-10-0.0.125
Cut 0.0.125 with a few bugfixes
2 parents b023eed + 2028c78 commit e80d632

File tree

13 files changed

+78
-30
lines changed

13 files changed

+78
-30
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# 0.0.125 - Oct 14, 2024 - "Delayed Beta Testing"
2+
3+
## Bug Fixes
4+
* On upgrade to 0.0.124, channels which were at a steady-state (i.e. for which
5+
the counterparty has received our latest `revoke_and_ack` message) will
6+
force-close upon receiving the next channel state update from our
7+
counterparty. When built with debug assertions a debug assertion failure will
8+
occur instead (#3362).
9+
* Listeners in a `ChainListenerSet` will now have their `block_connected`
10+
method called, when appropriate, rather than always having their
11+
`filtered_block_connected` method called with full block data (#3354).
12+
* Routefinding historical liquidity channel scores were made more consistent
13+
for channels which have very little data which has been decayed (#3362).
14+
* A debug assertion failure when adding nodes to the network graph after
15+
removal of nodes from the network graph was fixed (#3362).
16+
17+
In total, this release features 6 files changed, 32 insertions, 7
18+
deletions in 5 commits since 0.0.124 from 2 authors, in alphabetical order:
19+
20+
* Elias Rohrer
21+
* Matt Corallo
22+
23+
124
# 0.0.124 - Sep 3, 2024 - "Papercutting Feature Requests"
225

326
## API Updates

lightning-background-processor/Cargo.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-background-processor"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -11,6 +11,7 @@ edition = "2021"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
14+
features = ["lightning/std"]
1415
rustdoc-args = ["--cfg", "docsrs"]
1516

1617
[features]
@@ -21,14 +22,14 @@ default = ["std"]
2122

2223
[dependencies]
2324
bitcoin = { version = "0.32.2", default-features = false }
24-
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
25-
lightning-rapid-gossip-sync = { version = "0.0.124", path = "../lightning-rapid-gossip-sync", default-features = false }
25+
lightning = { version = "0.0.125", path = "../lightning", default-features = false }
26+
lightning-rapid-gossip-sync = { version = "0.0.125", path = "../lightning-rapid-gossip-sync", default-features = false }
2627

2728
[dev-dependencies]
2829
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
29-
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
30+
lightning = { version = "0.0.125", path = "../lightning", features = ["_test_utils"] }
3031
lightning-invoice = { version = "0.32.0", path = "../lightning-invoice" }
31-
lightning-persister = { version = "0.0.124", path = "../lightning-persister" }
32+
lightning-persister = { version = "0.0.125", path = "../lightning-persister" }
3233

3334
[lints]
3435
workspace = true

lightning-block-sync/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-block-sync"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Jeffrey Czyz", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -19,13 +19,13 @@ rpc-client = [ "serde_json", "chunked_transfer" ]
1919

2020
[dependencies]
2121
bitcoin = "0.32.2"
22-
lightning = { version = "0.0.124", path = "../lightning" }
22+
lightning = { version = "0.0.125", path = "../lightning" }
2323
tokio = { version = "1.35", features = [ "io-util", "net", "time", "rt" ], optional = true }
2424
serde_json = { version = "1.0", optional = true }
2525
chunked_transfer = { version = "1.4", optional = true }
2626

2727
[dev-dependencies]
28-
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
28+
lightning = { version = "0.0.125", path = "../lightning", features = ["_test_utils"] }
2929
tokio = { version = "1.35", features = [ "macros", "rt" ] }
3030

3131
[lints]

lightning-block-sync/src/init.rs

-2
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,6 @@ impl<'a, L: chain::Listen + ?Sized> chain::Listen for DynamicChainListener<'a, L
235235
struct ChainListenerSet<'a, L: chain::Listen + ?Sized>(Vec<(u32, &'a L)>);
236236

237237
impl<'a, L: chain::Listen + ?Sized> chain::Listen for ChainListenerSet<'a, L> {
238-
// Needed to differentiate test expectations.
239-
#[cfg(test)]
240238
fn block_connected(&self, block: &bitcoin::Block, height: u32) {
241239
for (starting_height, chain_listener) in self.0.iter() {
242240
if height > *starting_height {

lightning-custom-message/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-custom-message"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Jeffrey Czyz"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
bitcoin = "0.32.2"
18-
lightning = { version = "0.0.124", path = "../lightning" }
18+
lightning = { version = "0.0.125", path = "../lightning" }
1919

2020
[lints]
2121
workspace = true

lightning-net-tokio/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-net-tokio"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"
@@ -16,12 +16,12 @@ rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
1818
bitcoin = "0.32.2"
19-
lightning = { version = "0.0.124", path = "../lightning" }
19+
lightning = { version = "0.0.125", path = "../lightning" }
2020
tokio = { version = "1.35", features = [ "rt", "sync", "net", "time" ] }
2121

2222
[dev-dependencies]
2323
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
24-
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
24+
lightning = { version = "0.0.125", path = "../lightning", features = ["_test_utils"] }
2525

2626
[lints]
2727
workspace = true

lightning-persister/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-persister"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1515

1616
[dependencies]
1717
bitcoin = "0.32.2"
18-
lightning = { version = "0.0.124", path = "../lightning" }
18+
lightning = { version = "0.0.125", path = "../lightning" }
1919

2020
[target.'cfg(windows)'.dependencies]
2121
windows-sys = { version = "0.48.0", default-features = false, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] }
@@ -24,7 +24,7 @@ windows-sys = { version = "0.48.0", default-features = false, features = ["Win32
2424
criterion = { version = "0.4", optional = true, default-features = false }
2525

2626
[dev-dependencies]
27-
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
27+
lightning = { version = "0.0.125", path = "../lightning", features = ["_test_utils"] }
2828
bitcoin = { version = "0.32.2", default-features = false }
2929

3030
[lints]
+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-rapid-gossip-sync"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Arik Sosman <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -9,19 +9,23 @@ description = """
99
Utility to process gossip routing data from Rapid Gossip Sync Server.
1010
"""
1111

12+
[package.metadata.docs.rs]
13+
all-features = true
14+
features = ["lightning/std"]
15+
1216
[features]
1317
default = ["std"]
1418
std = []
1519

1620
[dependencies]
17-
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
21+
lightning = { version = "0.0.125", path = "../lightning", default-features = false }
1822
bitcoin = { version = "0.32.2", default-features = false }
1923

2024
[target.'cfg(ldk_bench)'.dependencies]
2125
criterion = { version = "0.4", optional = true, default-features = false }
2226

2327
[dev-dependencies]
24-
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
28+
lightning = { version = "0.0.125", path = "../lightning", features = ["_test_utils"] }
2529

2630
[lints]
2731
workspace = true

lightning-transaction-sync/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning-transaction-sync"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Elias Rohrer"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -23,15 +23,15 @@ electrum = ["electrum-client"]
2323
async-interface = []
2424

2525
[dependencies]
26-
lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["std"] }
26+
lightning = { version = "0.0.125", path = "../lightning", default-features = false, features = ["std"] }
2727
bitcoin = { version = "0.32.2", default-features = false }
2828
bdk-macros = "0.6"
2929
futures = { version = "0.3", optional = true }
3030
esplora-client = { version = "0.9", default-features = false, optional = true }
3131
electrum-client = { version = "0.21.0", optional = true }
3232

3333
[dev-dependencies]
34-
lightning = { version = "0.0.124", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
34+
lightning = { version = "0.0.125", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }
3535
tokio = { version = "1.35.0", features = ["full"] }
3636

3737
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]

lightning/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightning"
3-
version = "0.0.124"
3+
version = "0.0.125"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/lightningdevkit/rust-lightning/"

lightning/src/ln/channel.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -7153,6 +7153,12 @@ impl<SP: Deref> Channel<SP> where
71537153
pub fn get_channel_reestablish<L: Deref>(&mut self, logger: &L) -> msgs::ChannelReestablish where L::Target: Logger {
71547154
assert!(self.context.channel_state.is_peer_disconnected());
71557155
assert_ne!(self.context.cur_counterparty_commitment_transaction_number, INITIAL_COMMITMENT_NUMBER);
7156+
// This is generally the first function which gets called on any given channel once we're
7157+
// up and running normally. Thus, we take this opportunity to attempt to resolve the
7158+
// `holder_commitment_point` to get any keys which we are currently missing.
7159+
self.context.holder_commitment_point.try_resolve_pending(
7160+
&self.context.holder_signer, &self.context.secp_ctx, logger,
7161+
);
71567162
// Prior to static_remotekey, my_current_per_commitment_point was critical to claiming
71577163
// current to_remote balances. However, it no longer has any use, and thus is now simply
71587164
// set to a dummy (but valid, as required by the spec) public key.
@@ -9464,8 +9470,10 @@ impl<'a, 'b, 'c, ES: Deref, SP: Deref> ReadableArgs<(&'a ES, &'b SP, u32, &'c Ch
94649470
// TODO(async_signing): remove this expect with the Uninitialized variant
94659471
let current = holder_signer.get_per_commitment_point(cur_holder_commitment_transaction_number, &secp_ctx)
94669472
.expect("Must be able to derive the current commitment point upon channel restoration");
9467-
HolderCommitmentPoint::PendingNext {
9468-
transaction_number: cur_holder_commitment_transaction_number, current,
9473+
let next = holder_signer.get_per_commitment_point(cur_holder_commitment_transaction_number - 1, &secp_ctx)
9474+
.expect("Must be able to derive the next commitment point upon channel restoration");
9475+
HolderCommitmentPoint::Available {
9476+
transaction_number: cur_holder_commitment_transaction_number, current, next,
94699477
}
94709478
},
94719479
};

lightning/src/routing/gossip.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1898,7 +1898,9 @@ impl<L: Deref> NetworkGraph<L> where L::Target: Logger {
18981898
IndexedMapEntry::Vacant(node_entry) => {
18991899
let mut removed_node_counters = self.removed_node_counters.lock().unwrap();
19001900
**chan_info_node_counter = removed_node_counters.pop()
1901-
.unwrap_or(self.next_node_counter.fetch_add(1, Ordering::Relaxed) as u32);
1901+
.unwrap_or_else(|| {
1902+
self.next_node_counter.fetch_add(1, Ordering::Relaxed) as u32
1903+
});
19021904
node_entry.insert(NodeInfo {
19031905
channels: vec!(short_channel_id),
19041906
announcement_info: None,

lightning/src/routing/scoring.rs

+14-2
Original file line numberDiff line numberDiff line change
@@ -1818,15 +1818,27 @@ mod bucketed_history {
18181818
// values, which will result in us thinking we have some nontrivial probability of
18191819
// routing up to that amount.
18201820
if min_liquidity_offset_history_buckets[0] != 0 {
1821-
let mut highest_max_bucket_with_points = 0; // The highest max-bucket with any data
1821+
// Track the highest max-buckets with any data at all, as well as the highest
1822+
// max-bucket with at least BUCKET_FIXED_POINT_ONE.
1823+
let mut highest_max_bucket_with_points = 0;
1824+
let mut highest_max_bucket_with_full_points = None;
18221825
let mut total_max_points = 0; // Total points in max-buckets to consider
18231826
for (max_idx, max_bucket) in max_liquidity_offset_history_buckets.iter().enumerate() {
18241827
if *max_bucket >= BUCKET_FIXED_POINT_ONE {
1828+
highest_max_bucket_with_full_points = Some(cmp::max(highest_max_bucket_with_full_points.unwrap_or(0), max_idx));
1829+
}
1830+
if *max_bucket != 0 {
18251831
highest_max_bucket_with_points = cmp::max(highest_max_bucket_with_points, max_idx);
18261832
}
18271833
total_max_points += *max_bucket as u64;
18281834
}
1829-
let max_bucket_end_pos = BUCKET_START_POS[32 - highest_max_bucket_with_points] - 1;
1835+
// Use the highest max-bucket with at least BUCKET_FIXED_POINT_ONE, but if none is
1836+
// available use the highest max-bucket with any non-zero value. This ensures that
1837+
// if we have substantially decayed data we don't end up thinking the highest
1838+
// max-bucket is zero even though we have no points in the 0th max-bucket and do
1839+
// have points elsewhere.
1840+
let selected_max = highest_max_bucket_with_full_points.unwrap_or(highest_max_bucket_with_points);
1841+
let max_bucket_end_pos = BUCKET_START_POS[32 - selected_max] - 1;
18301842
if payment_pos < max_bucket_end_pos {
18311843
let (numerator, denominator) = success_probability(payment_pos as u64, 0,
18321844
max_bucket_end_pos as u64, POSITION_TICKS as u64 - 1, params, true);

0 commit comments

Comments
 (0)