Remove some unused functions and methods

In the case of CKey's destructor, it seems to have been an oversight in
f4d1fc259 not to delete it. At this point, it results in the move
constructors/assignment operators for CKey being deleted, which may have
a performance impact.
This commit is contained in:
Pieter Wuille
2017-09-21 23:40:33 -07:00
parent 6c4fecfaf7
commit 46c90437f9
3 changed files with 0 additions and 21 deletions

View File

@@ -56,11 +56,6 @@ public:
keydata.resize(32);
}
//! Destructor (again necessary because of memlocking).
~CKey()
{
}
friend bool operator==(const CKey& a, const CKey& b)
{
return a.fCompressed == b.fCompressed &&