-
Notifications
You must be signed in to change notification settings - Fork 172
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
feat(katana): add node handle #2408
Conversation
WalkthroughOhayo, sensei! The changes involve a significant refactoring of the Changes
Sequence Diagram(s)sequenceDiagram
participant A as Client
participant B as Node
participant C as RpcServer
A->>B: Start Node
B->>C: Initialize RPC Server
C-->>B: Return RpcServer
B-->>A: Return Node
sequenceDiagram
participant A as TestSequencer
participant B as Node
A->>B: Access Node
B-->>A: Provide Node details
A->>B: Stop Node
B->>C: Stop RpcServer
Tip Announcements
Recent review detailsConfiguration used: .coderabbit.yaml Files selected for processing (2)
Additional comments not posted (10)
TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2408 +/- ##
==========================================
- Coverage 68.13% 67.94% -0.20%
==========================================
Files 364 364
Lines 47712 47770 +58
==========================================
- Hits 32509 32457 -52
- Misses 15203 15313 +110 ☔ View full report in Codecov by Sentry. |
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.
nice refactoring having this handle with everything in it.
a super handle that encapsulates all the node components. renamed the old
NodeHandle
intoRpcServer
Summary by CodeRabbit
New Features
Handle
struct that encapsulates key components for improved organization and maintainability.start
function to return aHandle
instance, enhancing clarity in node state representation.TestSequencer
functionality by integrating with the newHandle
type for better access to backend components.Bug Fixes
Refactor