Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/donations/donations.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ export class DonationsService {
'Asset',
'Date',
'Tx Hash',
'USD Equivalent',
'USD Equivalent (pending)',
];
const rows: string[] = [headers.map((h) => `"${h}"`).join(',')];

Expand All @@ -429,7 +429,7 @@ export class DonationsService {
donation.assetCode,
donation.donatedAt.toISOString().split('T')[0],
`"${donation.txHash || ''}"`,
'0.00',
'N/A', // Price oracle not yet integrated
];
rows.push(row.join(','));
}
Expand Down
4 changes: 2 additions & 2 deletions src/users/export.processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class ExportProcessor {
'Asset',
'Date',
'Tx Hash',
'USD Equivalent',
'USD Equivalent (pending)',
];
const rows: string[] = [headers.map((h) => `"${h}"`).join(',')];

Expand All @@ -81,7 +81,7 @@ export class ExportProcessor {
donation.assetCode,
donation.donatedAt.toISOString().split('T')[0],
`"${donation.txHash || ''}"`,
'0.00', // USD equivalent: fetched from price cache in production
'N/A', // Price oracle not yet integrated
];
rows.push(row.join(','));
}
Expand Down
4 changes: 2 additions & 2 deletions src/users/users.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ export class UsersService {
'Asset',
'Date',
'Tx Hash',
'USD Equivalent',
'USD Equivalent (pending)',
];
const rows: string[] = [headers.map((h) => `"${h}"`).join(',')];

Expand All @@ -417,7 +417,7 @@ export class UsersService {
donation.assetCode,
donation.donatedAt.toISOString().split('T')[0],
`"${donation.txHash || ''}"`,
'0.00', // USD equivalent: fetched from price cache in production
'N/A', // Price oracle not yet integrated
];
rows.push(row.join(','));
}
Expand Down