drop verifier not used anymore

This commit is contained in:
orignal 2014-11-26 10:28:06 -05:00
parent 6153d799bc
commit f7d90648e3
3 changed files with 15 additions and 3 deletions

View file

@ -265,6 +265,13 @@ namespace data
}
}
void IdentityEx::DropVerifier ()
{
auto verifier = m_Verifier;
m_Verifier = nullptr; // TODO: make this atomic
delete verifier;
}
PrivateKeys& PrivateKeys::operator=(const Keys& keys)
{
m_Public = Identity (keys);