-
Notifications
You must be signed in to change notification settings - Fork 544
.NET Docs - Synchronous EngineWallet.Create #6469
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. |
Merge activity
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6469 +/- ##
=======================================
Coverage 54.82% 54.82%
=======================================
Files 875 875
Lines 54851 54851
Branches 3740 3740
=======================================
Hits 30071 30071
Misses 24685 24685
Partials 95 95
🚀 New features to boost your workflow:
|
size-limit report 📦
|
<!-- start pr-codex --> ## PR-Codex overview This PR focuses on modifying the instantiation of the `engineWallet` variable by removing the `await` keyword, indicating a change in how the `EngineWallet.Create` method is called. ### Detailed summary - Changed `var engineWallet = await EngineWallet.Create(` to `var engineWallet = EngineWallet.Create(`. - This change suggests that `EngineWallet.Create` no longer returns a promise or that the method is being called synchronously. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
76e8057
to
b10793e
Compare
<!-- start pr-codex --> ## PR-Codex overview This PR updates the instantiation of the `EngineWallet` object by removing the `await` keyword. This change suggests that the `Create` method is no longer asynchronous or has been refactored to not require awaiting. ### Detailed summary - Changed the instantiation of `engineWallet` from an asynchronous call using `await` to a synchronous call. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
b10793e
to
0d416d6
Compare
<!-- start pr-codex --> ## PR-Codex overview This PR focuses on modifying the instantiation of the `engineWallet` variable by removing the `await` keyword from the `EngineWallet.Create` method call, indicating a change in how the method is executed. ### Detailed summary - Removed `await` from the `EngineWallet.Create` method call for `engineWallet`. - The method now executes synchronously instead of asynchronously. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
7af5a0f
to
71f83a8
Compare
PR-Codex overview
This PR focuses on modifying the instantiation of the
engineWallet
variable by removing theawait
keyword, indicating a change in how theEngineWallet.Create
method is called.Detailed summary
await
from the instantiation ofengineWallet
.