Skip to content

Commit

Permalink
devop: dont fail on maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Nov 9, 2023
1 parent 95a1610 commit d554b1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/extension/src/libs/market-data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ class MarketData {
tokens[token.fiat_currency] = token;
});
return tokens;
});
})
.catch(() => ({} as Record<string, FiatMarket>));
await this.#setFiatExchangeRates(fiatMarketData);
await this.#setLastTimestamp(new Date().getTime());
}
Expand Down
1 change: 0 additions & 1 deletion packages/extension/src/providers/ethereum/networks/aa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { NetworkNames } from "@enkryptcom/types";
import { EvmNetwork, EvmNetworkOptions } from "../types/evm-network";
import { EtherscanActivity } from "../libs/activity-handlers";
import wrapActivityHandler from "@/libs/activity-state/wrap-activity-handler";
import assetsInfoHandler from "@/providers/ethereum/libs/assets-handlers/assetinfo-mew";

const artheraOptions: EvmNetworkOptions = {
name: NetworkNames.Arthera,
Expand Down

1 comment on commit d554b1d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.