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. |
glihm
left a comment
There was a problem hiding this comment.
nice refactoring having this handle with everything in it.
a super handle that encapsulates all the node components. renamed the old
NodeHandleintoRpcServerSummary by CodeRabbit
New Features
Handlestruct that encapsulates key components for improved organization and maintainability.startfunction to return aHandleinstance, enhancing clarity in node state representation.TestSequencerfunctionality by integrating with the newHandletype for better access to backend components.Bug Fixes
Refactor