Skip to content

Commit 2c72d91

Browse files
committed
fix import
1 parent ff9b39d commit 2c72d91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/state_transition/state_transition.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const BlindedBeaconBlock = @import("types/beacon_block.zig").BlindedBeaconBlock;
1414
const SignedBlindedBeaconBlock = @import("types/beacon_block.zig").SignedBlindedBeaconBlock;
1515
const TestCachedBeaconStateAllForks = @import("../../test/int/generate_state.zig").TestCachedBeaconStateAllForks;
1616
const EpochTransitionCacheOpts = @import("cache/epoch_transition_cache.zig").EpochTransitionCacheOpts;
17-
const EpochTransitionCacheOpts = @import("cache/epoch_cache.zig").;
17+
const EpochTransitionCache = @import("cache/epoch_transition_cache.zig").EpochTransitionCache;
1818
const process_epoch = @import("epoch/process_epoch.zig").process_epoch;
1919
const computeEpochAtSlot = @import("utils/epoch.zig").computeEpochAtSlot;
2020
const processSlot = @import("slot/process_slot.zig").processSlot;
@@ -60,7 +60,7 @@ fn processSlotsWithTransientCache(
6060
// TODO(bing): implement
6161
// const epochTransitionTimer = metrics?.epochTransitionTime.startTimer();
6262
// var epoch_transition_cache = beforeProcessEpoch(post_state, epoch_transition_cache_opts);
63-
process_epoch(allocator, post_state, epoch_transition_cache);
63+
// process_epoch(allocator, post_state, epoch_transition_cache);
6464

6565
// registerValidatorStatuses
6666

0 commit comments

Comments
 (0)