Skip to content

Commit 3d96a07

Browse files
committed
fix: merge issue on type/list.zig
1 parent 2554074 commit 3d96a07

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/ssz/type/list.zig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
const std = @import("std");
22
const expectEqualRootsAlloc = @import("test_utils.zig").expectEqualRootsAlloc;
33
const expectEqualSerializedAlloc = @import("test_utils.zig").expectEqualSerializedAlloc;
4-
const FixedContainerType = @import("container.zig").FixedContainerType;
5-
const VariableContainerType = @import("container.zig").VariableContainerType;
6-
const ByteVectorType = @import("byte_vector.zig").ByteVectorType;
74
const TypeKind = @import("type_kind.zig").TypeKind;
85
const isBasicType = @import("type_kind.zig").isBasicType;
96
const isFixedType = @import("type_kind.zig").isFixedType;
@@ -734,6 +731,7 @@ const UintType = @import("uint.zig").UintType;
734731
const BoolType = @import("bool.zig").BoolType;
735732
const ByteVectorType = @import("byte_vector.zig").ByteVectorType;
736733
const FixedContainerType = @import("container.zig").FixedContainerType;
734+
const VariableContainerType = @import("container.zig").VariableContainerType;
737735

738736
test "ListType - sanity" {
739737
const allocator = std.testing.allocator;

0 commit comments

Comments
 (0)