Return synonym "uint160_t" for uint160 typename to not break leveldb upgrade routine

This commit is contained in:
Vikram Rajkumar 2014-05-22 03:52:59 -04:00
parent e6007b88cd
commit c9529c8f87

View file

@ -77,7 +77,7 @@ class ripemd160
typedef ripemd160 uint160_t; typedef ripemd160 uint160_t;
typedef ripemd160 uint160; typedef ripemd160 uint160;
template<> struct get_typename<uint160> { static const char* name() { return "uint160"; } }; template<> struct get_typename<uint160_t> { static const char* name() { return "uint160_t"; } };
} // namespace fc } // namespace fc