Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Oct 28, 2024
1 parent ac5fa59 commit f382cc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
5 changes: 2 additions & 3 deletions yarn-project/end-to-end/src/fixtures/snapshot_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,8 @@ async function createAndSyncProverNode(
// Disable stopping the aztec node as the prover coordination test will kill it otherwise
// This is only required when stopping the prover node for testing
const aztecNodeWithoutStop = {
p2pClient: (aztecNode as any).p2pClient,
addEpochProofQuote: aztecNode.addEpochProofQuote,
getTxByHash: aztecNode.getTxByHash,
addEpochProofQuote: aztecNode.addEpochProofQuote.bind(aztecNode),
getTxByHash: aztecNode.getTxByHash.bind(aztecNode),
stop: () => Promise.resolve(),
};

Expand Down
2 changes: 1 addition & 1 deletion yarn-project/prover-node/src/factory.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { type Archiver, createArchiver } from '@aztec/archiver';
import { ProverCoordination, type AztecNode } from '@aztec/circuit-types';
import { type ProverCoordination } from '@aztec/circuit-types';
import { createEthereumChain } from '@aztec/ethereum';
import { Buffer32 } from '@aztec/foundation/buffer';
import { type DebugLogger, createDebugLogger } from '@aztec/foundation/log';
Expand Down
6 changes: 1 addition & 5 deletions yarn-project/prover-node/src/prover-coordination/factory.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { type ArchiveSource, type Archiver } from '@aztec/archiver';
import { BBCircuitVerifier, TestCircuitVerifier } from '@aztec/bb-prover';
import {
type ProverCoordination,
type WorldStateSynchronizer,
createAztecNodeClient,
} from '@aztec/circuit-types';
import { type ProverCoordination, type WorldStateSynchronizer, createAztecNodeClient } from '@aztec/circuit-types';
import { createDebugLogger } from '@aztec/foundation/log';
import { createP2PClient } from '@aztec/p2p';
import { type TelemetryClient } from '@aztec/telemetry-client';
Expand Down

0 comments on commit f382cc5

Please sign in to comment.