1
0
Fork 0
forked from lthn/blockchain

removed comment

This commit is contained in:
cryptozoidberg 2024-03-14 22:04:36 +01:00
parent 7e676e74e9
commit ddbc8e2484
No known key found for this signature in database
GPG key ID: 2E10CC61CAC8F36D

View file

@ -245,15 +245,6 @@ namespace tools
m_jwt_used_salts.add(salt, ticks_now + JWT_TOKEN_EXPIRATION_MAXIMUM);
m_jwt_used_salts.remove_if_expiration_less_than(ticks_now);
//TODO: check for salt unique
// std::cout << "Token is valid. Claims:" << std::endl;
//for(auto& e : decoded.get_payload_json())
//{
// std::cout << e.first << " = " << e.second << std::endl;
//}
LOG_PRINT_L0("JWT token OK");
return true;
}