Skip to content

Commit

Permalink
Merge pull request #1267 from bitshares/993_un_signed_int_unpacking
Browse files Browse the repository at this point in the history
unsigned_int unpacking
  • Loading branch information
abitmore authored Aug 23, 2018
2 parents 880a00a + 0395ed1 commit d382ac8
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion libraries/chain/include/graphene/chain/protocol/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,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;
Expand Down
1 change: 0 additions & 1 deletion libraries/db/include/graphene/db/object_id.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
3 changes: 1 addition & 2 deletions programs/js_operation_serializer/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,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"; } };

Expand Down

0 comments on commit d382ac8

Please sign in to comment.