Skip to content

Commit

Permalink
adding trade index in msg in show hold invoice
Browse files Browse the repository at this point in the history
  • Loading branch information
arkanoider committed Dec 9, 2024
1 parent db7e1be commit e3e4ebf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ pub async fn show_hold_invoice(
None,
)),
seller_pubkey,
None,
order.trade_index_seller,
)
.await;
// We send a message to buyer to know that seller was requested to pay the invoice
Expand All @@ -435,7 +435,7 @@ pub async fn show_hold_invoice(
Action::WaitingSellerToPay,
None,
buyer_pubkey,
None,
order.trade_index_buyer,
)
.await;

Expand Down Expand Up @@ -539,7 +539,7 @@ pub async fn set_waiting_invoice_status(
Action::AddInvoice,
Some(Content::Order(order_data)),
&buyer_pubkey,
None,
order.trade_index_buyer,
)
.await;

Expand Down

0 comments on commit e3e4ebf

Please sign in to comment.