Compare commits

...

2 commits

Author SHA1 Message Date
Sandip Patel
22a11f5bd2 fc commit change to 79e019 2019-12-06 16:42:59 +05:30
Sandip Patel
ba2eee5aa6 unsigned_int unpacking 2019-12-06 15:01:46 +05:30
4 changed files with 2 additions and 5 deletions

View file

@ -95,7 +95,6 @@ namespace graphene { namespace chain {
using fc::enum_type;
using fc::optional;
using fc::unsigned_int;
using fc::signed_int;
using fc::time_point_sec;
using fc::time_point;
using fc::safe;

View file

@ -34,7 +34,6 @@ namespace graphene { namespace db {
using fc::flat_map;
using fc::variant;
using fc::unsigned_int;
using fc::signed_int;
struct object_id_type
{

@ -1 +1 @@
Subproject commit bca392213c5104773be9ffa0fbde8958835a5da2
Subproject commit d1048a4b8e00725b46280d4a368874f91e79e019

View file

@ -128,8 +128,7 @@ template<> struct js_name< std::vector<char> > { static std::string name(){ retu
template<> struct js_name<fc::uint160> { static std::string name(){ return "bytes 20"; } };
template<> struct js_name<fc::sha224> { static std::string name(){ return "bytes 28"; } };
template<> struct js_name<fc::sha256> { static std::string name(){ return "bytes 32"; } };
template<> struct js_name<fc::unsigned_int> { static std::string name(){ return "varuint32"; } };
template<> struct js_name<fc::signed_int> { static std::string name(){ return "varint32"; } };
template<> struct js_name<fc::unsigned_int> { static std::string name(){ return "varuint64"; } };
template<> struct js_name< vote_id_type > { static std::string name(){ return "vote_id"; } };
template<> struct js_name< time_point_sec > { static std::string name(){ return "time_point_sec"; } };