Skip to content

Commit

Permalink
chore: address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths committed Mar 20, 2024
1 parent d80f310 commit 590edef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/beacon-node/src/chain/forkChoice/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
ForkChoiceStore,
ExecutionStatus,
JustifiedBalancesGetter,
ForkChoiceOpts as RealForkChoiceOpts,
ForkChoiceOpts as RawForkChoiceOpts,
} from "@lodestar/fork-choice";
import {
CachedBeaconStateAllForks,
Expand All @@ -21,7 +21,7 @@ import {ChainEventEmitter} from "../emitter.js";
import {ChainEvent} from "../emitter.js";
import {GENESIS_SLOT} from "../../constants/index.js";

export type ForkChoiceOpts = RealForkChoiceOpts & {
export type ForkChoiceOpts = RawForkChoiceOpts & {
// for testing only
forkchoiceConstructor?: typeof ForkChoice;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ describe(
skip: true,
},
/**
* Block slot 28 has parent slot 23, block slot 824 25 26 and 27 are reorged
* Block slot 28 has parent slot 23, block slot 24 25 26 and 27 are reorged
* --------------------------|---
* / | ^ ^ ^ ^
* / | 28 29 32 33
Expand Down Expand Up @@ -154,7 +154,7 @@ describe(
skip: true,
},
/**
* Block slot 28 has parent slot 23, block slot 824 25 26 and 27 are reorged
* Block slot 28 has parent slot 23, block slot 24 25 26 and 27 are reorged
* --------------------------|---
* / | ^ ^ ^ ^
* / | 28 29 32 33
Expand Down Expand Up @@ -186,7 +186,7 @@ describe(
skip: true,
},
/**
* Block slot 28 has parent slot 23, block slot 824 25 26 and 27 are reorged
* Block slot 28 has parent slot 23, block slot 24 25 26 and 27 are reorged
* --------------------------------|---
* / | ^ ^ ^ ^
* / | 28 29 32 33
Expand Down Expand Up @@ -218,7 +218,7 @@ describe(
skip: true,
},
/**
* Block slot 28 has parent slot 23, block slot 824 25 26 and 27 are reorged
* Block slot 28 has parent slot 23, block slot 24 25 26 and 27 are reorged
* --------------------------------------------|---
* / | ^ ^ ^ ^
* / | 28 29 32 33
Expand Down

0 comments on commit 590edef

Please sign in to comment.