We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e7de77 commit bc0d047Copy full SHA for bc0d047
chia/wallet/util/clvm_streamable.py
@@ -120,6 +120,9 @@ def json_deserialize_with_clvm_streamable(
120
bytes.fromhex(json_dict), streamable_type, translation_layer=translation_layer
121
)
122
else:
123
+ if not hasattr(streamable_type, "streamable_fields"):
124
+ # This is a rust streamable and therefore cannot be a clvm_streamable
125
+ return streamable_type.from_json_dict(json_dict)
126
old_streamable_fields = streamable_type.streamable_fields()
127
new_streamable_fields = []
128
for old_field in old_streamable_fields:
0 commit comments