diff --git a/packages/verkle/src/types.ts b/packages/verkle/src/types.ts index 1eb9ae1b87..cf90d0aaad 100644 --- a/packages/verkle/src/types.ts +++ b/packages/verkle/src/types.ts @@ -1,7 +1,5 @@ import { intToBytes, utf8ToBytes } from '@ethereumjs/util' -import type { VerkleNode } from './node/index.js' -import type { WalkController } from './util/walkController.js' import type { DB } from '@ethereumjs/util' // Field representation of a commitment @@ -61,13 +59,6 @@ export type Checkpoint = { root: Uint8Array } -export type FoundNodeFunction = ( - nodeRef: Uint8Array, - node: VerkleNode | null, - key: Uint8Array, - walkController: WalkController -) => void - export const ROOT_DB_KEY = utf8ToBytes('__root__') export enum LeafType {