Skip to content

Commit

Permalink
removed wrong request_id in messages (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkanoider authored Nov 8, 2024
1 parent 69052b2 commit 579abbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/admin_take_dispute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ pub async fn admin_take_dispute_action(
// to them know who will assist them on the dispute
let solver_pubkey = Peer::new(event.sender.to_hex());
let msg_to_buyer = Message::new_order(
request_id,
None,
Some(order.id),
Action::AdminTookDispute,
Some(Content::Peer(solver_pubkey.clone())),
);

let msg_to_seller = Message::new_order(
request_id,
None,
Some(order.id),
Action::AdminTookDispute,
Some(Content::Peer(solver_pubkey)),
Expand Down
2 changes: 1 addition & 1 deletion src/app/fiat_sent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub async fn fiat_sent_action(

// We a message to the seller
send_new_order_msg(
request_id,
None,
Some(order.id),
Action::FiatSentOk,
Some(Content::Peer(peer)),
Expand Down

0 comments on commit 579abbb

Please sign in to comment.