Skip to content

Commit

Permalink
fix(staking): don't use mainnet in prod yet
Browse files Browse the repository at this point in the history
  • Loading branch information
cprussin committed Sep 13, 2024
1 parent d749bef commit dbc0ea9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/staking/src/config/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ export const WALLETCONNECT_PROJECT_ID = demandInProduction(
"WALLETCONNECT_PROJECT_ID",
);
export const RPC = process.env.RPC;
export const IS_MAINNET =
IS_PRODUCTION_SERVER || process.env.IS_MAINNET !== undefined;
export const IS_MAINNET = process.env.IS_MAINNET !== undefined;
export const HERMES_URL =
process.env.HERMES_URL ??
(IS_PRODUCTION_SERVER
Expand Down

0 comments on commit dbc0ea9

Please sign in to comment.