mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
🐛 User::GetBal() returned bool instead of 64 bit int
This commit is contained in:
parent
abf7887ad3
commit
8aa4581ffb
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue