From d9c103f6260932ef8f9d4063a15252a42f63518a Mon Sep 17 00:00:00 2001 From: matthewkeil Date: Tue, 3 Dec 2024 17:46:23 +0700 Subject: [PATCH] chore: lint --- packages/state-transition/src/cache/epochCache.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/state-transition/src/cache/epochCache.ts b/packages/state-transition/src/cache/epochCache.ts index c8d877c99fd..af9e79bc831 100644 --- a/packages/state-transition/src/cache/epochCache.ts +++ b/packages/state-transition/src/cache/epochCache.ts @@ -49,6 +49,7 @@ import { import {computeBaseRewardPerIncrement, computeSyncParticipantReward} from "../util/syncCommittee.js"; import {sumTargetUnslashedBalanceIncrements} from "../util/targetUnslashedBalance.js"; import {EffectiveBalanceIncrements, getEffectiveBalanceIncrementsWithLen} from "./effectiveBalanceIncrements.js"; +import {EpochTransitionCache} from "./epochTransitionCache.js"; import {Index2PubkeyCache, syncPubkeys} from "./pubkeyCache.js"; import {CachedBeaconStateAllForks} from "./stateCache.js"; import { @@ -58,7 +59,6 @@ import { getSyncCommitteeCache, } from "./syncCommitteeCache.js"; import {BeaconStateAllForks, BeaconStateAltair} from "./types.js"; -import {EpochTransitionCache} from "./epochTransitionCache.js"; /** `= PROPOSER_WEIGHT / (WEIGHT_DENOMINATOR - PROPOSER_WEIGHT)` */ export const PROPOSER_WEIGHT_FACTOR = PROPOSER_WEIGHT / (WEIGHT_DENOMINATOR - PROPOSER_WEIGHT);