Skip to content

Commit

Permalink
Fixes post rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Dec 6, 2024
1 parent f28c5ee commit 444b73a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion yarn-project/archiver/src/archiver/archiver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class Archiver implements ArchiveSource {
private readonly config: { pollingIntervalMs: number; batchSize: number },
private readonly instrumentation: ArchiverInstrumentation,
private readonly l1constants: L1RollupConstants,
private readonly log: DebugLogger = createDebugLogger('archiver'),
private readonly log: Logger = createLogger('archiver'),
) {
this.store = new ArchiverStoreHelper(dataStore);

Expand Down
4 changes: 2 additions & 2 deletions yarn-project/epoch-cache/src/epoch_cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from '@aztec/circuit-types';
import { RollupContract, createEthereumChain } from '@aztec/ethereum';
import { EthAddress } from '@aztec/foundation/eth-address';
import { type Logger, createDebugLogger } from '@aztec/foundation/log';
import { type Logger, createLogger } from '@aztec/foundation/log';

import { createPublicClient, encodeAbiParameters, http, keccak256 } from 'viem';

Expand All @@ -32,7 +32,7 @@ export class EpochCache {
private committee: EthAddress[];
private cachedEpoch: bigint;
private cachedSampleSeed: bigint;
private readonly log: Logger = createDebugLogger('aztec:EpochCache');
private readonly log: Logger = createLogger('aztec:EpochCache');

constructor(
private rollup: RollupContract,
Expand Down

0 comments on commit 444b73a

Please sign in to comment.