Fixed alleged c&p bug

This commit is contained in:
Peter Conrad 2018-08-19 10:42:27 +02:00
parent 0c22469090
commit 4b61f3ca3d

View file

@ -90,7 +90,7 @@ namespace std
struct hash<fc::unsigned_int>
{
public:
size_t operator()(const fc::signed_int &a) const
size_t operator()(const fc::unsigned_int &a) const
{
return std::hash<uint64_t>()(a.value);
}