Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unsigned_int unpacking #1267

Merged
merged 3 commits into from Aug 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion libraries/chain/include/graphene/chain/protocol/types.hpp
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
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
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