diff --git a/integration-tests/sync-tests/sync-replica.spec.ts b/integration-tests/sync-tests/sync-replica.spec.ts index 7db8c731e042..c0577c547722 100644 --- a/integration-tests/sync-tests/sync-replica.spec.ts +++ b/integration-tests/sync-tests/sync-replica.spec.ts @@ -27,7 +27,6 @@ describe('Syncing a replica', () => { // Wait for replica to be looping let logs = await replica.logs() while (!logs.out.includes('Starting Verifier Loop')) { - console.log(logs) await sleep(500) logs = await replica.logs() } @@ -109,7 +108,6 @@ describe('Syncing a replica', () => { await transfer.wait() const latestSequencerBlock = (await provider.getBlock('latest')) as any - console.log(latestSequencerBlock) const matchingReplicaBlock = (await syncReplica( latestSequencerBlock.number diff --git a/integration-tests/test/shared/docker-compose.ts b/integration-tests/test/shared/docker-compose.ts index d2126f1c793f..8ecf6beae112 100644 --- a/integration-tests/test/shared/docker-compose.ts +++ b/integration-tests/test/shared/docker-compose.ts @@ -9,7 +9,6 @@ type ServiceNames = | 'relayer' | 'verifier' | 'replica' - | 'l2_dtl' const OPS_DIRECTORY = path.join(process.cwd(), '../ops') const DEFAULT_SERVICES: ServiceNames[] = [ diff --git a/ops/README.md b/ops/README.md index 0d49ac3ffe6b..6838b666ec53 100644 --- a/ops/README.md +++ b/ops/README.md @@ -30,20 +30,13 @@ docker-compose \ up --build --detach ``` -Optionally, run a verifier along the rest of the stack. +Optionally, run a verifier along the rest of the stack. Run a replica with the same command by switching the service name! ``` docker-compose up --scale \ verifier=1 \ --build --detach ``` -Do the same to run an L2 DTL and replica combo. Note that the L2 DTL is a requirement for the replica! -``` -docker-compose up \ - --scale l2_dtl=1 --scale replica=1 \ - --build --detach -``` - A Makefile has been provided for convience. The following targets are available. - make up