@@ -27,7 +27,7 @@ use crate::sync::{self, Arc};
27
27
use crate :: routing:: gossip:: NodeId ;
28
28
29
29
// Using the same keys for LN and BTC ids
30
- pub ( super ) fn add_channel (
30
+ pub ( crate ) fn add_channel (
31
31
gossip_sync : & P2PGossipSync < Arc < NetworkGraph < Arc < test_utils:: TestLogger > > > , Arc < test_utils:: TestChainSource > , Arc < test_utils:: TestLogger > > ,
32
32
secp_ctx : & Secp256k1 < All > , node_1_privkey : & SecretKey , node_2_privkey : & SecretKey , features : ChannelFeatures , short_channel_id : u64
33
33
) {
@@ -59,7 +59,7 @@ pub(super) fn add_channel(
59
59
} ;
60
60
}
61
61
62
- pub ( super ) fn add_or_update_node (
62
+ pub ( crate ) fn add_or_update_node (
63
63
gossip_sync : & P2PGossipSync < Arc < NetworkGraph < Arc < test_utils:: TestLogger > > > , Arc < test_utils:: TestChainSource > , Arc < test_utils:: TestLogger > > ,
64
64
secp_ctx : & Secp256k1 < All > , node_privkey : & SecretKey , features : NodeFeatures , timestamp : u32
65
65
) {
@@ -86,7 +86,7 @@ pub(super) fn add_or_update_node(
86
86
} ;
87
87
}
88
88
89
- pub ( super ) fn update_channel (
89
+ pub ( crate ) fn update_channel (
90
90
gossip_sync : & P2PGossipSync < Arc < NetworkGraph < Arc < test_utils:: TestLogger > > > , Arc < test_utils:: TestChainSource > , Arc < test_utils:: TestLogger > > ,
91
91
secp_ctx : & Secp256k1 < All > , node_privkey : & SecretKey , update : UnsignedChannelUpdate
92
92
) {
0 commit comments