diff --git a/src/Managing.Application/Accounts/AccountService.cs b/src/Managing.Application/Accounts/AccountService.cs index 3f8ff8b3..6b81e10f 100644 --- a/src/Managing.Application/Accounts/AccountService.cs +++ b/src/Managing.Application/Accounts/AccountService.cs @@ -344,7 +344,7 @@ public class AccountService : IAccountService exchangeStatuses.Add(new ExchangeApprovalStatus { Exchange = TradingExchanges.GmxV2, - IsApproved = account.IsGmxInitialized + IsInitialized = account.IsGmxInitialized }); } diff --git a/src/Managing.Domain/Accounts/ExchangeApprovalStatus.cs b/src/Managing.Domain/Accounts/ExchangeApprovalStatus.cs index 1f9dbb98..035fbbdf 100644 --- a/src/Managing.Domain/Accounts/ExchangeApprovalStatus.cs +++ b/src/Managing.Domain/Accounts/ExchangeApprovalStatus.cs @@ -10,5 +10,5 @@ public class ExchangeApprovalStatus public TradingExchanges Exchange { get; set; } [Id(1)] - public bool IsApproved { get; set; } + public bool IsInitialized { get; set; } }