Skip to content

Commit

Permalink
Introduce reply_path for BOLT12Invoices in Offers Flow
Browse files Browse the repository at this point in the history
  • Loading branch information
shaavan committed Jul 9, 2024
1 parent 212ade4 commit e11be98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning/src/ln/channelmanager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10364,7 +10364,7 @@ where
};

match response {
Ok(invoice) => responder.respond(OffersMessage::Invoice(invoice)),
Ok(invoice) => responder.respond_with_reply_path(OffersMessage::Invoice(invoice)),
Err(error) => responder.respond(OffersMessage::InvoiceError(error.into())),
}
},
Expand Down

0 comments on commit e11be98

Please sign in to comment.