Fix typo in rpc server stopped tracing log

This commit is contained in:
binarybaron 2023-09-21 15:21:05 +02:00
parent f367c2ba49
commit bd2aef796d

View file

@ -273,7 +273,6 @@ impl Request {
| BobState::XmrRedeemed { .. } => None,
};
// TODO: Add relevant txids
Ok(json!({
"swapId": swap_id,
"seller": {
@ -635,7 +634,7 @@ impl Request {
server_handle.stopped().await;
tracing::info!("Server RPC server");
tracing::info!("Stopped RPC server");
Ok(json!({}))
}