Skip to content

Commit e50ead0

Browse files
committed
fix: use top-level import type in checkpoint-proving-state
Removing the value constants (NUM_BASE_PARITY_PER_ROOT_PARITY, NUM_MSGS_PER_BASE_PARITY) left an @aztec/constants import whose members are all inline-type, which @typescript-eslint/no-import-type-side-effects rejects. Convert to import type.
1 parent fdd288a commit e50ead0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

yarn-project/prover-client/src/orchestrator/checkpoint-proving-state.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { SpongeBlob } from '@aztec/blob-lib';
2-
import {
3-
type ARCHIVE_HEIGHT,
4-
type L1_TO_L2_MSG_SUBTREE_ROOT_SIBLING_PATH_LENGTH,
5-
type NESTED_RECURSIVE_PROOF_LENGTH,
6-
type NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH,
2+
import type {
3+
ARCHIVE_HEIGHT,
4+
L1_TO_L2_MSG_SUBTREE_ROOT_SIBLING_PATH_LENGTH,
5+
NESTED_RECURSIVE_PROOF_LENGTH,
6+
NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH,
77
} from '@aztec/constants';
88
import { BlockNumber } from '@aztec/foundation/branded-types';
99
import { Fr } from '@aztec/foundation/curves/bn254';

0 commit comments

Comments
 (0)