1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-31 13:47:02 +02:00

Transaction update

This commit is contained in:
sjaanus 2025-06-26 16:36:33 +03:00
parent 7545d61a25
commit 82647b2e25
No known key found for this signature in database
GPG Key ID: 20E007C0248BA7FF

View File

@ -6,7 +6,6 @@ export interface TransactionUserParams {
value: number;
}
// Generate a numeric transaction ID based on timestamp + random component
function generateNumericTransactionId(): number {
const timestamp = Date.now();
const random = Math.floor(Math.random() * 1000);