-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/issue 13 #37
Feature/issue 13 #37
Conversation
Centaurus.Domain/MessageHandlers/AlphaHandlers/BaseAlphaMessageHandler.cs
Show resolved
Hide resolved
var request = envelope.Message as RequestQuantum; | ||
if (request == null) | ||
return; | ||
var account = Global.AccountStorage.GetAccount(request.RequestMessage.Account); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be a minor performace problem in a future. We populate the account when the request arrives. Can we somehow obtain it from the request, without fetching from the storage?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's move it to separate issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ref #39
Resolves #13