Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
dadepo committed Mar 15, 2022
1 parent c69b5e3 commit 78189f4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/lodestar/test/utils/node/beacon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,9 @@ export async function getDevBeaconNode(
// This deepmerge should merge all the array elements of the api options with the
// dev defaults that we wish, especially for the api options
{
api: {rest: {port: 19596}},
db: {name: tmpDir.name},
eth1: {enabled: false},
api: {rest: {api: ["beacon", "config", "events", "node", "validator"]}},
api: {rest: {api: ["beacon", "config", "events", "node", "validator"], port: 19596}},
metrics: {enabled: false},
network: {discv5: null},
} as Partial<IBeaconNodeOptions>,
Expand Down

0 comments on commit 78189f4

Please sign in to comment.