diff --git a/yarn-project/aztec/src/cli/cmds/start_archiver.ts b/yarn-project/aztec/src/cli/cmds/start_archiver.ts index 05d7c0197f5b..3713a0e1aa34 100644 --- a/yarn-project/aztec/src/cli/cmds/start_archiver.ts +++ b/yarn-project/aztec/src/cli/cmds/start_archiver.ts @@ -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]; diff --git a/yarn-project/blob-sink/src/client/http.ts b/yarn-project/blob-sink/src/client/http.ts index 29539a05a28f..444772a2e9c8 100644 --- a/yarn-project/blob-sink/src/client/http.ts +++ b/yarn-project/blob-sink/src/client/http.ts @@ -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')), ); diff --git a/yarn-project/sequencer-client/src/publisher/l1-publisher.ts b/yarn-project/sequencer-client/src/publisher/l1-publisher.ts index 8a594621d783..a2e3bf5932d1 100644 --- a/yarn-project/sequencer-client/src/publisher/l1-publisher.ts +++ b/yarn-project/sequencer-client/src/publisher/l1-publisher.ts @@ -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);