diff --git a/include/fc/crypto/elliptic.hpp b/include/fc/crypto/elliptic.hpp index fc717c5..5168bd3 100644 --- a/include/fc/crypto/elliptic.hpp +++ b/include/fc/crypto/elliptic.hpp @@ -49,6 +49,10 @@ namespace fc { { return a.serialize() == b.serialize(); } + inline friend bool operator!=( const public_key& a, const public_key& b ) + { + return a.serialize() != b.serialize(); + } private: friend class private_key; fc::fwd my;