set some ECIESx25519 params

This commit is contained in:
orignal 2020-04-27 18:53:02 -04:00
parent 142a138cfc
commit f77a58b2dc
3 changed files with 15 additions and 9 deletions

View file

@ -788,7 +788,7 @@ namespace garlic
// ECIESx25519
for (auto it = m_ECIESx25519Tags.begin (); it != m_ECIESx25519Tags.end ();)
{
if (ts > it->second.creationTime + INCOMING_TAGS_EXPIRATION_TIMEOUT)
if (ts > it->second.creationTime + ECIESX25519_INCOMING_TAGS_EXPIRATION_TIMEOUT)
it = m_ECIESx25519Tags.erase (it);
else
++it;