Skip to content

Commit

Permalink
chore: remove dependency cycles in sequencer-client (AztecProtocol#…
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Jan 17, 2024
1 parent 7b96760 commit fe4538b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion yarn-project/sequencer-client/src/client/sequencer-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ import { WorldStateSynchronizer } from '@aztec/world-state';
import { SoloBlockBuilder } from '../block_builder/solo_block_builder.js';
import { SequencerClientConfig } from '../config.js';
import { getGlobalVariableBuilder } from '../global_variable_builder/index.js';
import { Sequencer, SequencerConfig, getL1Publisher, getVerificationKeys } from '../index.js';
import { getVerificationKeys } from '../mocks/verification_keys.js';
import { EmptyRollupProver } from '../prover/empty.js';
import { getL1Publisher } from '../publisher/index.js';
import { Sequencer, SequencerConfig } from '../sequencer/index.js';
import { PublicProcessorFactory } from '../sequencer/public_processor.js';
import { RealRollupCircuitSimulator } from '../simulator/rollup.js';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { to2Fields } from '@aztec/foundation/serialize';
import { Timer } from '@aztec/foundation/timer';
import { MerkleTreeOperations } from '@aztec/world-state';

import { getVerificationKeys } from '../index.js';
import { getVerificationKeys } from '../mocks/verification_keys.js';
import { EmptyPublicProver } from '../prover/empty.js';
import { PublicProver } from '../prover/index.js';
import { PublicKernelCircuitSimulator } from '../simulator/index.js';
Expand Down

0 comments on commit fe4538b

Please sign in to comment.