Add an `InboundUpdateFees` message
[rust-lightning] / lightning-net-tokio / src / lib.rs
index 7a7cc4bb0992f7589c6df480aa5cc1ff93b86007..f951b79dc19d63af6e5c13880e4bc42d3c59ff32 100644 (file)
@@ -602,6 +602,7 @@ mod tests {
                fn handle_update_fee(&self, _their_node_id: &PublicKey, _msg: &UpdateFee) {}
                fn handle_announcement_signatures(&self, _their_node_id: &PublicKey, _msg: &AnnouncementSignatures) {}
                fn handle_channel_update(&self, _their_node_id: &PublicKey, _msg: &ChannelUpdate) {}
+               fn handle_inbound_fees_update(&self, _their_node_id: &PublicKey, _msg: &InboundFeesUpdate) {}
                fn peer_disconnected(&self, their_node_id: &PublicKey, _no_connection_possible: bool) {
                        if *their_node_id == self.expected_pubkey {
                                self.disconnected_flag.store(true, Ordering::SeqCst);