Add CBase58Data::hash_append

This commit is contained in:
Vinnie Falco
2014-06-05 18:34:14 -07:00
parent f25456ce25
commit 8b881d3a77

View File

@@ -89,6 +89,14 @@ public:
return 0;
}
template <class Hasher>
friend
void
hash_append(Hasher& hasher, CBase58Data const& value)
{
beast::hash_append(hasher, value.vchData);
}
friend std::size_t hash_value (const CBase58Data& b58);
};