chore: Refactor existing references to transaction service

This commit is contained in:
nexy7574
2026-02-20 21:31:45 +00:00
committed by timedout
parent e986cd4536
commit 21a97cdd0b
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -479,7 +479,7 @@ async fn handle_edu_direct_to_device(
// Check if this is a new transaction id
if services
.transaction_ids
.existing_txnid(sender, None, message_id)
.get_client_txn(sender, None, message_id)
.await
.is_ok()
{
@@ -499,7 +499,7 @@ async fn handle_edu_direct_to_device(
// Save transaction id with empty data
services
.transaction_ids
.add_txnid(sender, None, message_id, &[]);
.add_client_txnid(sender, None, message_id, &[]);
}
async fn handle_edu_direct_to_device_user<Event: Send + Sync>(