Skip to content

Commit

Permalink
fix: relative LogFn import (#4328)
Browse files Browse the repository at this point in the history
fix relative import of `LogFn` that should come from `@aztec/foundation`
  • Loading branch information
spypsy committed Jan 31, 2024
1 parent 84e1f7d commit 1faead5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/aztec/src/cli/cmds/start_p2p_bootstrap.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DebugLogger } from '@aztec/aztec.js';
import { LogFn } from '@aztec/foundation/log';
import { BootstrapNode, P2PConfig, getP2PConfigEnvVars } from '@aztec/p2p';

import { LogFn } from '../../../../foundation/src/log/log_fn.js';
import { mergeEnvVarsAndCliOptions, parseModuleOptions } from '../util.js';

export const startP2PBootstrap = async (
Expand Down

0 comments on commit 1faead5

Please sign in to comment.