Skip to content

Commit 65e3e3f

Browse files
committed
Small bug
1 parent 92fcee1 commit 65e3e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/wallet/util/clvm_streamable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def json_deserialize_with_clvm_streamable(
140140
old_streamable_fields = streamable_type.streamable_fields()
141141
new_streamable_fields = []
142142
for old_field in old_streamable_fields:
143-
if is_compound_type(old_field):
143+
if is_compound_type(old_field.type):
144144
inner_types = get_args(old_field.type)
145145
new_streamable_fields.append(
146146
dataclasses.replace(

0 commit comments

Comments
 (0)