diff --git a/include/fc/crypto/hash160.hpp b/include/fc/crypto/hash160.hpp index 3b59ded..75604f8 100644 --- a/include/fc/crypto/hash160.hpp +++ b/include/fc/crypto/hash160.hpp @@ -28,9 +28,6 @@ #include namespace fc{ -class sha512; -class sha256; -class ripemd160; class hash160 { @@ -112,12 +109,6 @@ namespace raw { void to_variant( const hash160& bi, variant& v, uint32_t max_depth ); void from_variant( const variant& v, hash160& bi, uint32_t max_depth ); - /* - typedef hash160 uint160_t; - typedef hash160 uint160; - - template<> struct get_typename { static const char* name() { return "uint160_t"; } }; - */ template<> struct get_typename { static const char* name() { return "hash160"; } }; } // namespace fc diff --git a/src/crypto/hash160.cpp b/src/crypto/hash160.cpp index ab131e5..d4b390a 100644 --- a/src/crypto/hash160.cpp +++ b/src/crypto/hash160.cpp @@ -28,9 +28,6 @@ #include #include #include -#include -#include -#include #include #include #include "_digest_common.hpp"