🐛 User::GetBal() returned bool instead of 64 bit int

This commit is contained in:
EntireTwix 2021-04-01 19:22:39 -07:00
parent abf7887ad3
commit 8aa4581ffb

View file

@ -37,7 +37,7 @@ public:
return state; return state;
} }
bool GetBal() uint_fast64_t GetBal()
{ {
std::lock_guard<std::mutex> lock{bal_lock}; std::lock_guard<std::mutex> lock{bal_lock};
return balance; return balance;