From 228d9b5a931fd0e136f5ba3a1ad34fc043b90fc1 Mon Sep 17 00:00:00 2001 From: James Calfee Date: Mon, 9 Nov 2015 17:26:51 -0600 Subject: [PATCH] JavaScript serilizer generator updates #439 --- programs/js_operation_serializer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/js_operation_serializer/main.cpp b/programs/js_operation_serializer/main.cpp index a5eda145..980231e8 100644 --- a/programs/js_operation_serializer/main.cpp +++ b/programs/js_operation_serializer/main.cpp @@ -109,9 +109,9 @@ template struct js_name< fc::safe > { static std::string name(){ template<> struct js_name< std::vector > { static std::string name(){ return "bytes()"; } }; -template<> struct js_name< op_wrapper > { static std::string name(){ return "operation "; } }; template<> struct js_name { static std::string name(){ return "bytes 20"; } }; template<> struct js_name { static std::string name(){ return "bytes 28"; } }; +template<> struct js_name { static std::string name(){ return "bytes 32"; } }; template<> struct js_name { static std::string name(){ return "varuint32"; } }; template<> struct js_name { static std::string name(){ return "varint32"; } }; template<> struct js_name< vote_id_type > { static std::string name(){ return "vote_id"; } };