We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f920f5d commit 3b1dde2Copy full SHA for 3b1dde2
src/pages/api/v1/aggregatedBalances/snapshots.ts
@@ -73,7 +73,7 @@ export default async function handler(
73
});
74
return 1;
75
} catch (error) {
76
- console.error(`Failed to store snapshot for wallet ${walletBalance.walletId}:`, error);
+ console.error('Failed to store snapshot for wallet %s:', walletBalance.walletId, error);
77
return 0;
78
}
79
src/pages/api/v1/aggregatedBalances/test.ts
@@ -132,7 +132,7 @@ export default async function handler(
132
133
134
// Collect all wallet balances for snapshots
135
- let allWalletBalances = [];
+ const allWalletBalances = [];
136
let totalAdaBalance = 0;
137
let processedWallets = 0;
138
let failedWallets = 0;
0 commit comments