Unverified Commit b1851f7a authored by Robert Kimball's avatar Robert Kimball Committed by GitHub

Fix serialization of op's type (#4019)

* Fix serializer op name

* cleanup
parent 226b595e
...@@ -3055,7 +3055,7 @@ json JSONSerializer::serialize_node(const Node& n) ...@@ -3055,7 +3055,7 @@ json JSONSerializer::serialize_node(const Node& n)
{ {
node["friendly_name"] = n.get_friendly_name(); node["friendly_name"] = n.get_friendly_name();
} }
node["op"] = n.type_info.name; node["op"] = type_info.name;
// TODO Multiple outputs // TODO Multiple outputs
json inputs = json::array(); json inputs = json::array();
json control_deps = json::array(); json control_deps = json::array();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment