unsigned_int unpacking

This commit is contained in:
Sandip Patel 2019-12-06 15:01:46 +05:30
parent 3a2def7311
commit ba2eee5aa6
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 6cc9534891db71b5a0692e61a29a7b1d520a238e

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"; } };