@@ -66,7 +66,7 @@ use crate::ln::chan_utils::CommitmentTransaction;
66
66
use super::channel::UNFUNDED_CHANNEL_AGE_LIMIT_TICKS;
67
67
68
68
#[xtest(feature = "_externalize_tests")]
69
- fn test_channel_resumption_fail_post_funding() {
69
+ pub fn test_channel_resumption_fail_post_funding() {
70
70
// If we fail to exchange funding with a peer prior to it disconnecting we'll resume the
71
71
// channel open on reconnect, however if we do exchange funding we do not currently support
72
72
// replaying it and here test that the channel closes.
@@ -2899,7 +2899,7 @@ pub fn claim_htlc_outputs() {
2899
2899
//
2900
2900
// This is a regression test for https://github.com/lightningdevkit/rust-lightning/issues/3537.
2901
2901
#[xtest(feature = "_externalize_tests")]
2902
- fn test_multiple_package_conflicts() {
2902
+ pub fn test_multiple_package_conflicts() {
2903
2903
let chanmon_cfgs = create_chanmon_cfgs(3);
2904
2904
let node_cfgs = create_node_cfgs(3, &chanmon_cfgs);
2905
2905
let mut user_cfg = test_default_channel_config();
@@ -5047,7 +5047,7 @@ pub fn test_static_spendable_outputs_timeout_tx() {
5047
5047
check_spends!(spend_txn[2], node_txn[0], commitment_tx[0]); // All outputs
5048
5048
}
5049
5049
5050
- pub fn do_test_static_spendable_outputs_justice_tx_revoked_commitment_tx(split_tx: bool) {
5050
+ fn do_test_static_spendable_outputs_justice_tx_revoked_commitment_tx(split_tx: bool) {
5051
5051
let chanmon_cfgs = create_chanmon_cfgs(2);
5052
5052
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
5053
5053
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
@@ -10603,7 +10603,7 @@ pub fn test_max_dust_htlc_exposure() {
10603
10603
}
10604
10604
10605
10605
#[xtest(feature = "_externalize_tests")]
10606
- fn test_nondust_htlc_excess_fees_are_dust() {
10606
+ pub fn test_nondust_htlc_excess_fees_are_dust() {
10607
10607
// Test that the excess transaction fees paid in nondust HTLCs count towards our dust limit
10608
10608
const DEFAULT_FEERATE: u32 = 253;
10609
10609
const HIGH_FEERATE: u32 = 275;
@@ -11943,7 +11943,7 @@ pub fn test_manual_funding_abandon() {
11943
11943
}
11944
11944
11945
11945
#[xtest(feature = "_externalize_tests")]
11946
- fn test_funding_signed_event() {
11946
+ pub fn test_funding_signed_event() {
11947
11947
let mut cfg = UserConfig::default();
11948
11948
cfg.channel_handshake_config.minimum_depth = 1;
11949
11949
let chanmon_cfgs = create_chanmon_cfgs(2);
0 commit comments