Skip to content

Commit f8d1126

Browse files
Use create_chanmon_cfgs_with_keys for predictable channel key IDs
Removes `set_counter` (which resets RNG) and adds control over channel key ID generation
1 parent 3469eb4 commit f8d1126

File tree

4 files changed

+6
-34
lines changed

4 files changed

+6
-34
lines changed

lightning/src/ln/monitor_tests.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -2313,7 +2313,11 @@ fn test_claimable_balance_correct_while_payment_pending() {
23132313

23142314
fn do_test_restored_packages_retry(check_old_monitor_retries_after_upgrade: bool) {
23152315
// Tests that we'll retry packages that were previously timelocked after we've restored them.
2316-
let chanmon_cfgs = create_chanmon_cfgs(2);
2316+
let node0_key_id = <[u8; 32]>::from_hex("0000000000000000000000004D49E5DA0000000000000000000000000000002A").unwrap();
2317+
let node1_key_id = <[u8; 32]>::from_hex("0000000000000000000000004D49E5DAD000D6201F116BAFD379F1D61DF161B9").unwrap();
2318+
let predefined_keys_ids = Some(vec![node0_key_id, node1_key_id]);
2319+
2320+
let chanmon_cfgs = create_chanmon_cfgs_with_keys(2, predefined_keys_ids);
23172321
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
23182322
let persister;
23192323
let new_chain_monitor;
@@ -2323,10 +2327,6 @@ fn do_test_restored_packages_retry(check_old_monitor_retries_after_upgrade: bool
23232327

23242328
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
23252329

2326-
// Reset our RNG counters to mirror the RNG output from when this test was written.
2327-
nodes[0].keys_manager.backing.inner.set_counter(0x1_0000_0004);
2328-
nodes[1].keys_manager.backing.inner.set_counter(0x1_0000_0004);
2329-
23302330
// Open a channel, lock in an HTLC, and immediately broadcast the commitment transaction. This
23312331
// ensures that the HTLC timeout package is held until we reach its expiration height.
23322332
let (_, _, chan_id, funding_tx) = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, 50_000_000);

lightning/src/sign/mod.rs

-7
Original file line numberDiff line numberDiff line change
@@ -2365,13 +2365,6 @@ impl RandomBytes {
23652365
pub fn new(seed: [u8; 32]) -> Self {
23662366
Self { seed, index: AtomicCounter::new() }
23672367
}
2368-
2369-
#[cfg(test)]
2370-
/// Force the counter to a value to produce the same output again. Mostly useful in tests where
2371-
/// we need to maintain behavior with a previous version which didn't use as much RNG output.
2372-
pub(crate) fn set_counter(&self, count: u64) {
2373-
self.index.set_counter(count);
2374-
}
23752368
}
23762369

23772370
impl EntropySource for RandomBytes {

lightning/src/util/atomic_counter.rs

-12
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,4 @@ impl AtomicCounter {
3333
*mtx - 1
3434
}
3535
}
36-
#[cfg(test)]
37-
pub(crate) fn set_counter(&self, count: u64) {
38-
#[cfg(target_has_atomic = "64")]
39-
{
40-
self.counter.store(count, Ordering::Release);
41-
}
42-
#[cfg(not(target_has_atomic = "64"))]
43-
{
44-
let mut mtx = self.counter.lock().unwrap();
45-
*mtx = count;
46-
}
47-
}
4836
}

lightning/src/util/dyn_signer.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,6 @@ delegate!(DynKeysInterface, OutputSpender, inner,
244244
pub trait DynKeysInterfaceTrait:
245245
NodeSigner + OutputSpender + SignerProvider<EcdsaSigner = DynSigner> + EntropySource + Send + Sync
246246
{
247-
#[cfg(test)]
248-
fn set_counter(&self, _count: u64) {}
249247
}
250248

251249
#[cfg(taproot)]
@@ -258,8 +256,6 @@ pub trait DynKeysInterfaceTrait:
258256
+ Send
259257
+ Sync
260258
{
261-
#[cfg(test)]
262-
fn set_counter(&self, _count: u64) {}
263259
}
264260

265261
/// A dyn wrapper for PhantomKeysManager
@@ -320,9 +316,4 @@ delegate!(DynPhantomKeysInterface, OutputSpender, inner,
320316
) -> Result<Transaction, ()>
321317
);
322318

323-
impl DynKeysInterfaceTrait for DynPhantomKeysInterface {
324-
#[cfg(test)]
325-
fn set_counter(&self, count: u64) {
326-
self.inner.inner.entropy_source.set_counter(count);
327-
}
328-
}
319+
impl DynKeysInterfaceTrait for DynPhantomKeysInterface {}

0 commit comments

Comments
 (0)