Remove trailing ;s from macro calls to silence new rustc warnings
[rust-lightning] / lightning / src / ln / channelmanager.rs
index 17a287c74c0859180292dfd21c9a85c6d5b10fda..4ebbc3e55346ee53aa9cf1cb861720f85198b5b5 100644 (file)
@@ -1141,7 +1141,7 @@ macro_rules! handle_monitor_err {
                res
        } };
        ($self: ident, $err: expr, $channel_state: expr, $entry: expr, $action_type: path, $resend_raa: expr, $resend_commitment: expr, $failed_forwards: expr, $failed_fails: expr) => {
-               handle_monitor_err!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, $failed_forwards, $failed_fails, Vec::new());
+               handle_monitor_err!($self, $err, $channel_state, $entry, $action_type, $resend_raa, $resend_commitment, $failed_forwards, $failed_fails, Vec::new())
        }
 }