Skip to content

Commit 3acfa64

Browse files
committed
fix type
1 parent 69ebaca commit 3acfa64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/serializer/src/types/monomorphics.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { Box } from "@fleet-sdk/common";
2+
import type { AvlTreeData } from "../serializers/avlTreeSerializer";
23
import type { SConstant } from "../sigmaConstant";
34
import { SMonomorphicType } from "./base";
45

@@ -22,7 +23,7 @@ export class SBoxType extends SMonomorphicType<SConstant<Box<bigint>>> {
2223
}
2324
}
2425

25-
export class SAvlTreeType extends SMonomorphicType<SConstant<Box<bigint>>> {
26+
export class SAvlTreeType extends SMonomorphicType<AvlTreeData> {
2627
get code(): 0x64 {
2728
return 0x64;
2829
}

0 commit comments

Comments
 (0)