prevent dup wallets

This commit is contained in:
TheXamlGuy
2024-07-23 18:20:58 +01:00
parent 43ad8c7ac2
commit 82e5982632
6 changed files with 57 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ public class Validator(string propertyName,
{
foreach (ValidationRule rule in rules)
{
if (!await rule.ValidateAsync())
if (!await rule.Validate())
{
return (false, rule.Message);
}