From 8f68502d84ca2bf9e9b390e7a657b51057ced77f Mon Sep 17 00:00:00 2001 From: cryptooda Date: Sat, 13 Sep 2025 03:02:50 +0700 Subject: [PATCH] Update initialized property --- src/Managing.Application/Accounts/AccountService.cs | 2 +- src/Managing.Domain/Accounts/ExchangeApprovalStatus.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } }