Skip to content

Commit

Permalink
Fix wrong import path
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Mar 26, 2024
1 parent 7f002d1 commit 33a6464
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions yarn-project/circuit-types/src/logs/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './encrypted_l2_log.js';
export * from './get_unencrypted_logs_response.js';
export * from './function_l2_logs.js';
export * from './l2_block_l2_logs.js';
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/pxe/src/note_processor/note_processor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
AztecNode,
EncryptedFunctionL2Logs,
EncryptedL2BlockL2Logs,
EncryptedL2Log,
EncryptedTxL2Logs,
KeyPair,
KeyStore,
Expand All @@ -22,7 +23,6 @@ import { AcirSimulator } from '@aztec/simulator';
import { jest } from '@jest/globals';
import { MockProxy, mock } from 'jest-mock-extended';

import { EncryptedL2Log } from '../../../circuit-types/src/logs/encrypted_l2_log.js';
import { PxeDatabase } from '../database/index.js';
import { KVPxeDatabase } from '../database/kv_pxe_database.js';
import { NoteDao } from '../database/note_dao.js';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
AuthWitness,
AztecNode,
EncryptedFunctionL2Logs,
EncryptedL2Log,
L1NotePayload,
Note,
NoteStatus,
Expand All @@ -26,7 +27,6 @@ import { AztecAddress } from '@aztec/foundation/aztec-address';
import { Fr, Point } from '@aztec/foundation/fields';
import { createDebugLogger } from '@aztec/foundation/log';

import { EncryptedL2Log } from '../../../circuit-types/src/logs/encrypted_l2_log.js';
import { NoteData, toACVMWitness } from '../acvm/index.js';
import { PackedArgsCache } from '../common/packed_args_cache.js';
import { DBOracle } from './db_oracle.js';
Expand Down
8 changes: 6 additions & 2 deletions yarn-project/simulator/src/client/execution_result.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import { EncryptedFunctionL2Logs, UnencryptedFunctionL2Logs, UnencryptedL2Log } from '@aztec/circuit-types';
import {
EncryptedFunctionL2Logs,
EncryptedL2Log,
UnencryptedFunctionL2Logs,
UnencryptedL2Log,
} from '@aztec/circuit-types';
import { AztecAddress, PrivateCallStackItem } from '@aztec/circuits.js';
import { EventSelector } from '@aztec/foundation/abi';

import { EncryptedL2Log } from '../../../circuit-types/src/logs/encrypted_l2_log.js';
import { ExecutionResult, collectEncryptedLogs, collectUnencryptedLogs } from './execution_result.js';

function emptyExecutionResult(): ExecutionResult {
Expand Down

0 comments on commit 33a6464

Please sign in to comment.