Skip to content

Commit

Permalink
Reduce the genesis delay
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Sep 19, 2023
1 parent 38a29aa commit f3f6cf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/beacon-node/test/e2e/chain/lightclient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe("chain / lightclient", function () {

// delay a bit so regular sync sees it's up to date and sync is completed from the beginning
// also delay to allow bls workers to be transpiled/initialized
const genesisSlotsDelay = 16;
const genesisSlotsDelay = 7;
const genesisTime = Math.floor(Date.now() / 1000) + genesisSlotsDelay * testParams.SECONDS_PER_SLOT;

const testLoggerOpts: TestLoggerOpts = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe("sync / unknown block sync", function () {
this.timeout("10 min");

// the node needs time to transpile/initialize bls worker threads
const genesisSlotsDelay = 16;
const genesisSlotsDelay = 7;
const genesisTime = Math.floor(Date.now() / 1000) + genesisSlotsDelay * testParams.SECONDS_PER_SLOT;
const testLoggerOpts: TestLoggerOpts = {
level: LogLevel.info,
Expand Down

0 comments on commit f3f6cf8

Please sign in to comment.