🐎 forgot GetBal & VerifyPass in last commit

This commit is contained in:
EntireTwix 2021-04-01 21:25:59 -07:00
parent 030d5d4a3e
commit 1d5f93479b

View file

@ -61,7 +61,6 @@ public:
*/ */
uint_fast64_t GetBal() uint_fast64_t GetBal()
{ {
std::lock_guard<std::mutex> lock{bal_lock};
return balance; return balance;
} }
@ -73,7 +72,6 @@ public:
*/ */
bool VerifyPassword(const std::string &attempt) //for connected services bool VerifyPassword(const std::string &attempt) //for connected services
{ {
std::lock_guard<std::mutex> lock{pass_lock};
return (password == attempt); return (password == attempt);
} }
}; };