Skip to content

Commit

Permalink
fix: set currency to euro (#1782)
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosp1011 authored Oct 25, 2024
1 parent 0dce648 commit ac6b84b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wallet/backend/src/transaction/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export class TransactionService implements ITransactionService {
walletAddressId: walletAddress.id,
accountId: walletAddress.accountId,
paymentId: transaction.transactionId,
assetCode: transaction.billingCurrency,
assetCode: 'EUR',
value: transformBalance(Number(transaction.billingAmount), 2),
type: 'OUTGOING',
status: 'COMPLETED',
Expand Down

0 comments on commit ac6b84b

Please sign in to comment.