From 4784bbf7d97d126bd52396b37f2afb20ee674ec8 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 21 Aug 2024 16:54:31 +0000 Subject: [PATCH] Make `ResponseInstruction` `Clone`able --- lightning/src/onion_message/messenger.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lightning/src/onion_message/messenger.rs b/lightning/src/onion_message/messenger.rs index 8df16599e..7689aed0c 100644 --- a/lightning/src/onion_message/messenger.rs +++ b/lightning/src/onion_message/messenger.rs @@ -384,6 +384,7 @@ impl Responder { } /// Instructions for how and where to send the response to an onion message. +#[derive(Clone)] pub struct ResponseInstruction { send_path: BlindedMessagePath, context: Option, -- 2.39.5