Skip to content

Commit 5df9672

Browse files
committed
fmt
1 parent c59c9b5 commit 5df9672

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

packages/e2e/src/helper/createEnvVars.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ export function createEnvVars(): EnvVars {
8888
}
8989

9090
// -- live networks
91-
const rpcEnvKey = LIVE_RPC_ENV_VARS[network as (typeof supportedNetworks)[number]];
91+
const rpcEnvKey =
92+
LIVE_RPC_ENV_VARS[network as (typeof supportedNetworks)[number]];
9293
if (rpcEnvKey) {
9394
const liveRpcUrl = process.env[rpcEnvKey];
9495
if (liveRpcUrl) rpcUrl = liveRpcUrl;

packages/e2e/src/init.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,7 @@ export const init = async (
177177
: _baseNetworkModule;
178178

179179
if (rpcOverride) {
180-
console.log(
181-
`✅ Using RPC override (${rpcOverrideEnvVar}):`,
182-
rpcOverride
183-
);
180+
console.log(`✅ Using RPC override (${rpcOverrideEnvVar}):`, rpcOverride);
184181
}
185182

186183
/**

packages/e2e/src/tickets/delegation.suite.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ export function registerPaymentDelegationTicketSuite() {
4646
fundPKPLedger: true,
4747
sponsor: {
4848
restrictions: {
49-
totalMaxPriceInWei: testEnv.config.sponsorshipLimits.totalMaxPriceInWei,
49+
totalMaxPriceInWei:
50+
testEnv.config.sponsorshipLimits.totalMaxPriceInWei,
5051
requestsPerPeriod: '100',
5152
periodSeconds: '600',
5253
},

0 commit comments

Comments
 (0)