Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Jan 7, 2025
1 parent f7262ac commit 27c75cd
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion yarn-project/aztec/src/cli/cmds/start_archiver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function startArchiver(
const archiverStore = new KVArchiverDataStore(store, archiverConfig.maxLogs);

const telemetry = await createAndStartTelemetryClient(getTelemetryClientConfig());
// TODO(ISSUE): place CL url in config here
// TODO(https://github.com/AztecProtocol/aztec-packages/issues/10056): place CL url in config here
const blobSinkClient = createBlobSinkClient();
const archiver = await Archiver.createAndSync(archiverConfig, archiverStore, { telemetry, blobSinkClient }, true);
services.archiver = [archiver, ArchiverApiSchema];
Expand Down
1 change: 0 additions & 1 deletion yarn-project/blob-sink/src/client/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export class HttpBlobSinkClient implements BlobSinkClientInterface {

if (res.ok) {
const body = await res.json();
// TODO: note these blobs have everything serialised and wont work with a CL client
const blobs = body.data.map((b: { blob: string; index: number }) =>
Blob.fromBuffer(Buffer.from(b.blob, 'hex')),
);
Expand Down
2 changes: 0 additions & 2 deletions yarn-project/sequencer-client/src/publisher/l1-publisher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,6 @@ export class L1Publisher {
this.sleepTimeMs = config?.l1PublishRetryIntervalMS ?? 60_000;
this.ethereumSlotDuration = BigInt(config.ethereumSlotDuration);

// TODO: This client will need to be injected at a higher level for the
// archiver to be able to interface with it
const telemetry = deps.telemetry ?? new NoopTelemetryClient();
this.blobSinkClient = deps.blobSinkClient ?? createBlobSinkClient(config.blobSinkUrl);

Expand Down

0 comments on commit 27c75cd

Please sign in to comment.