From da25af0bada8c3c3fca23f0c93f76a6ed56f3f53 Mon Sep 17 00:00:00 2001 From: benesjan Date: Fri, 22 Sep 2023 13:24:11 +0000 Subject: [PATCH] redundant import fix --- yarn-project/circuits.js/src/types/index.ts | 1 - yarn-project/types/src/index.ts | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/circuits.js/src/types/index.ts b/yarn-project/circuits.js/src/types/index.ts index db49629d51d9..12a0bb40a85c 100644 --- a/yarn-project/circuits.js/src/types/index.ts +++ b/yarn-project/circuits.js/src/types/index.ts @@ -1,5 +1,4 @@ export * from './contract_function_dao.js'; -export { CompleteAddress } from '../structs/index.js'; export * from './deployment_info.js'; export * from './partial_address.js'; export * from './grumpkin_private_key.js'; diff --git a/yarn-project/types/src/index.ts b/yarn-project/types/src/index.ts index d064651f5cee..c97141536281 100644 --- a/yarn-project/types/src/index.ts +++ b/yarn-project/types/src/index.ts @@ -23,3 +23,4 @@ export * from './interfaces/index.js'; export * from './sibling_path.js'; export * from './auth_witness.js'; export * from '@aztec/circuits.js/types'; +export { CompleteAddress } from '@aztec/circuits.js';