Skip to content

Commit

Permalink
Fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Dec 17, 2024
1 parent d6a2967 commit f9fe677
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions yarn-project/sequencer-client/src/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type AllowedElement } from '@aztec/circuit-types';
import { type AllowedElement, type SequencerConfig } from '@aztec/circuit-types/config';
import { AztecAddress, Fr, FunctionSelector } from '@aztec/circuits.js';
import {
type L1ContractsConfig,
Expand All @@ -21,10 +21,9 @@ import {
getPublisherConfigMappings,
getTxSenderConfigMappings,
} from './publisher/config.js';
import { type SequencerConfig } from './sequencer/config.js';

export * from './publisher/config.js';
export * from './sequencer/config.js';
export { SequencerConfig };

/** Chain configuration. */
type ChainConfig = {
Expand Down
1 change: 0 additions & 1 deletion yarn-project/sequencer-client/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export * from './client/index.js';
export * from './config.js';
export * from './publisher/index.js';
export * from './sequencer/index.js';

// Used by the node to simulate public parts of transactions. Should these be moved to a shared library?
// ISSUE(#9832)
Expand Down
1 change: 0 additions & 1 deletion yarn-project/sequencer-client/src/publisher/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export { L1Publisher, L1SubmitEpochProofArgs } from './l1-publisher.js';
export * from './test-l1-publisher.js';
export * from './config.js';
2 changes: 1 addition & 1 deletion yarn-project/sequencer-client/src/sequencer/config.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { SequencerConfig } from '@aztec/circuit-types/config';
export { type SequencerConfig } from '@aztec/circuit-types/config';

0 comments on commit f9fe677

Please sign in to comment.