mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-18 17:12:14 +11:00
🐎 removed contains check in SendFunds
This commit is contained in:
parent
513e0bb643
commit
7ce3c0f7d4
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ public:
|
||||||
{
|
{
|
||||||
|
|
||||||
//cant send money to self, from self
|
//cant send money to self, from self
|
||||||
if (a_name == b_name || !users.contains(a_name) || !users.contains(b_name))
|
if (a_name == b_name)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue