Skip to content

Commit 3a61d03

Browse files
authored
Merge pull request #1909 from cprussin/dont-use-mainnet-yet
fix(staking): don't use mainnet in prod yet
2 parents d749bef + dbc0ea9 commit 3a61d03

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/staking/src/config/server.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ export const WALLETCONNECT_PROJECT_ID = demandInProduction(
3535
"WALLETCONNECT_PROJECT_ID",
3636
);
3737
export const RPC = process.env.RPC;
38-
export const IS_MAINNET =
39-
IS_PRODUCTION_SERVER || process.env.IS_MAINNET !== undefined;
38+
export const IS_MAINNET = process.env.IS_MAINNET !== undefined;
4039
export const HERMES_URL =
4140
process.env.HERMES_URL ??
4241
(IS_PRODUCTION_SERVER

0 commit comments

Comments
 (0)