Skip to content

Commit

Permalink
feat: stop fees updater for testnets
Browse files Browse the repository at this point in the history
  • Loading branch information
arthcp committed Sep 27, 2024
1 parent d33749f commit 3394295
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/rpcConfig/constants/feesUpdaterChainSlugs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mode } from "../../deploy/config/config";
export const feesUpdaterSupportedChainSlugs = (): ChainSlug[] => {
if (mode === DeploymentMode.PROD) {
const feesUpdaterSupportedChainSlugs = [];
[...MainnetIds, ...TestnetIds].forEach((m) => {
[...MainnetIds].forEach((m) => {
if (batcherSupportedChainSlugs.includes(m)) {
feesUpdaterSupportedChainSlugs.push(m);
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/rpcConfig/constants/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ import { DeploymentMode } from "../../../src";

export const version = {
[DeploymentMode.DEV]: "1.0.5",
[DeploymentMode.PROD]: "1.0.56",
[DeploymentMode.PROD]: "1.0.57",
};

0 comments on commit 3394295

Please sign in to comment.