diff --git a/src/app/cancel.rs b/src/app/cancel.rs index e61ac185..fd74312d 100644 --- a/src/app/cancel.rs +++ b/src/app/cancel.rs @@ -255,6 +255,16 @@ pub async fn cancel_add_invoice( "{}: Canceled order Id {} republishing order", buyer_pubkey, order.id ); + // Confirmation message to buyer + send_new_order_msg( + request_id, + Some(order.id), + Action::Canceled, + None, + &event.rumor.pubkey, + None, + ) + .await; Ok(()) } }