diff --git a/include/user.hpp b/include/user.hpp index 15df8e6..cb7e869 100644 --- a/include/user.hpp +++ b/include/user.hpp @@ -61,7 +61,6 @@ public: */ uint_fast64_t GetBal() { - std::lock_guard lock{bal_lock}; return balance; } @@ -73,7 +72,6 @@ public: */ bool VerifyPassword(const std::string &attempt) //for connected services { - std::lock_guard lock{pass_lock}; return (password == attempt); } }; \ No newline at end of file