From 1d5f93479bf4f202c8b7704318cee80024c8122d Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Thu, 1 Apr 2021 21:25:59 -0700 Subject: [PATCH] :racehorse: forgot GetBal & VerifyPass in last commit --- include/user.hpp | 2 -- 1 file changed, 2 deletions(-) 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