1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

exceptions BE GONE

This commit is contained in:
Michael 2019-07-16 01:40:28 +01:00
parent afdef6eb52
commit 5fdd68fa44
No known key found for this signature in database
GPG key ID: 2D51757B47E2434C

View file

@ -132,7 +132,8 @@ namespace llarp
return m_crypto;
}
throw std::logic_error("Cryptomanager::instance() was undefined");
assert(false && "Cryptomanager::instance() was undefined");
abort();
}
};