Skip to content

Commit

Permalink
Fix sync
Browse files Browse the repository at this point in the history
  • Loading branch information
serg-plusplus committed Oct 11, 2024
1 parent 53234ea commit ff66e51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/back/services/walletServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const withQueue = createQueue();
async function handleWalletRequest(
ctx: MessageContext<Request | EventMessage, Response>,
) {
console.debug("New wallet request", ctx);
// console.debug("New wallet request", ctx);

try {
await ensureInited();
Expand Down
2 changes: 1 addition & 1 deletion src/core/back/sync/tokens/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const syncNetworks = memoize(
};

if (existing) {
if (!balance) {
if (balance === null) {
return {
...existing,
priceUSD,
Expand Down

0 comments on commit ff66e51

Please sign in to comment.