File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ interface Node {
174174 sequence<PaymentDetails> list_payments();
175175 sequence<PeerDetails> list_peers();
176176 sequence<ChannelDetails> list_channels();
177- sequence<ChannelMonitorSizeInfo> list_channel_sizes ();
177+ sequence<ChannelMonitorSizeInfo> list_channel_monitor_sizes ();
178178 NetworkGraph network_graph();
179179 string sign_message([ByRef]sequence<u8> msg);
180180 boolean verify_signature([ByRef]sequence<u8> msg, [ByRef]string sig, [ByRef]PublicKey pkey);
Original file line number Diff line number Diff line change @@ -1054,7 +1054,7 @@ impl Node {
10541054 /// Alby: Retrieve a list of channel monitor sizes (how big each channel monitor is when serialized)
10551055 /// we use this to be able to notify users when their channel monitors are getting too large
10561056 /// (a risk that reading/writing to VSS could start taking too long)
1057- pub fn list_channel_sizes ( & self ) -> Vec < ChannelMonitorSizeInfo > {
1057+ pub fn list_channel_monitor_sizes ( & self ) -> Vec < ChannelMonitorSizeInfo > {
10581058 use lightning:: util:: ser:: Writeable ;
10591059 use std:: ops:: Deref ;
10601060
You can’t perform that action at this time.
0 commit comments