Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
KuphJr committed Mar 18, 2024
1 parent 8684b8b commit b5ac24b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/localFunctionsTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,9 @@ export const deployFunctionsOracle = async (deployer: Wallet): Promise<Functions
)
const initialAllowedSenders: string[] = []
const initialBlockedSenders: string[] = []
const allowlist = await allowlistFactory.connect(deployer).deploy(simulatedAllowListConfig, initialAllowedSenders, initialBlockedSenders)
const allowlist = await allowlistFactory
.connect(deployer)
.deploy(simulatedAllowListConfig, initialAllowedSenders, initialBlockedSenders)

const setAllowListIdTx = await router.setAllowListId(
utils.formatBytes32String(simulatedAllowListId),
Expand Down
4 changes: 2 additions & 2 deletions src/simulationConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export const simulatedCoordinatorConfig = {
fulfillmentGasPriceOverEstimationBP: 0,
fallbackNativePerUnitLink: BigInt('5000000000000000'),
minimumEstimateGasPriceWei: 1000000000, // 1 gwei
fallbackUsdPerUnitLink: 1400000000,
fallbackUsdPerUnitLinkDecimals: 8,
fallbackUsdPerUnitLink: 1400000000,
fallbackUsdPerUnitLinkDecimals: 8,
operationFeeCentsUsd: 0,
}

Expand Down

0 comments on commit b5ac24b

Please sign in to comment.