@@ -1496,6 +1496,7 @@ pub struct TestKeysInterface {
1496
1496
expectations : Mutex < Option < VecDeque < OnGetShutdownScriptpubkey > > > ,
1497
1497
pub unavailable_signers_ops : Mutex < HashMap < [ u8 ; 32 ] , HashSet < SignerOp > > > ,
1498
1498
pub next_signer_disabled_ops : Mutex < HashSet < SignerOp > > ,
1499
+ pub override_next_keys_id : Mutex < Option < [ u8 ; 32 ] > > ,
1499
1500
}
1500
1501
1501
1502
impl EntropySource for TestKeysInterface {
@@ -1546,6 +1547,13 @@ impl SignerProvider for TestKeysInterface {
1546
1547
type TaprootSigner = TestChannelSigner ;
1547
1548
1548
1549
fn generate_channel_keys_id ( & self , inbound : bool , user_channel_id : u128 ) -> [ u8 ; 32 ] {
1550
+ let mut override_keys = self . override_next_keys_id . lock ( ) . unwrap ( ) ;
1551
+
1552
+ if let Some ( keys_id) = * override_keys {
1553
+ // Reset after use
1554
+ * override_keys = None ;
1555
+ return keys_id;
1556
+ }
1549
1557
self . backing . generate_channel_keys_id ( inbound, user_channel_id)
1550
1558
}
1551
1559
@@ -1625,6 +1633,7 @@ impl TestKeysInterface {
1625
1633
expectations : Mutex :: new ( None ) ,
1626
1634
unavailable_signers_ops : Mutex :: new ( new_hash_map ( ) ) ,
1627
1635
next_signer_disabled_ops : Mutex :: new ( new_hash_set ( ) ) ,
1636
+ override_next_keys_id : Mutex :: new ( None ) ,
1628
1637
}
1629
1638
}
1630
1639
@@ -1652,6 +1661,11 @@ impl TestKeysInterface {
1652
1661
let cell = states. get ( & keys_id) . unwrap ( ) ;
1653
1662
Arc :: clone ( cell)
1654
1663
}
1664
+
1665
+ pub fn set_next_keys_id ( & self , keys_id : [ u8 ; 32 ] ) -> & Self {
1666
+ * self . override_next_keys_id . lock ( ) . unwrap ( ) = Some ( keys_id) ;
1667
+ self
1668
+ }
1655
1669
}
1656
1670
1657
1671
impl Drop for TestKeysInterface {
0 commit comments