Add `counterparty_node_id` to `FundingGenerationReady`
[rust-lightning] / lightning-background-processor / src / lib.rs
index 107f65f9b74f141cdb087eded0befe59d4c9dfac..a0ac265ea6b31778b780f3ff36481dae4e1874bf 100644 (file)
@@ -540,7 +540,7 @@ mod tests {
        macro_rules! handle_funding_generation_ready {
                ($event: expr, $channel_value: expr) => {{
                        match $event {
-                               &Event::FundingGenerationReady { temporary_channel_id, channel_value_satoshis, ref output_script, user_channel_id } => {
+                               &Event::FundingGenerationReady { temporary_channel_id, channel_value_satoshis, ref output_script, user_channel_id, .. } => {
                                        assert_eq!(channel_value_satoshis, $channel_value);
                                        assert_eq!(user_channel_id, 42);