Add bundle backtest refact + fix whitelist

This commit is contained in:
2025-10-12 14:40:20 +07:00
parent 4543246871
commit 5acc77650f
21 changed files with 2961 additions and 628 deletions

View File

@@ -64,8 +64,17 @@ public class UserService : IUserService
throw new Exception($"Address {recoveredAddress} not corresponding");
}
User user = null;
// Check if account exist
var user = await _userRepository.GetUserByNameAsync(name);
try
{
user = await _userRepository.GetUserByNameAsync(name);
}
catch (Exception e)
{
Console.WriteLine(e);
}
if (user != null)
{