🐎 removed contains check in SendFunds

This commit is contained in:
EntireTwix 2021-04-09 16:47:22 -07:00
parent 513e0bb643
commit 7ce3c0f7d4

View file

@ -65,7 +65,7 @@ public:
{
//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;
}