Skip to content

Commit c64e13c

Browse files
committed
format
1 parent c3e877b commit c64e13c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/staking/src/config/server.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ export const GOVERNANCE_ONLY_REGIONS = transformOr(
7676
export const PROXYCHECK_API_KEY = demandInProduction("PROXYCHECK_API_KEY");
7777
// This needs to be a public key that has SOL in it all the time, it will be used as a payer in the transaction simulation to compute the claimable rewards
7878
// such simulation fails when the payer has no funds.
79-
export const SIMULATION_PAYER_ADDRESS = getOr("SIMULATION_PAYER_ADDRESS", "E5KR7yfb9UyVB6ZhmhQki1rM1eBcxHvyGKFZakAC5uc");
79+
export const SIMULATION_PAYER_ADDRESS = getOr(
80+
"SIMULATION_PAYER_ADDRESS",
81+
"E5KR7yfb9UyVB6ZhmhQki1rM1eBcxHvyGKFZakAC5uc",
82+
);
8083
class MissingEnvironmentError extends Error {
8184
constructor(name: string) {
8285
super(`Missing environment variable: ${name}!`);

0 commit comments

Comments
 (0)